~ubuntu-branches/ubuntu/quantal/nspr/quantal-security

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/tests/joinuu.c

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2009-08-10 11:34:26 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090810113426-3uv4diflrkcbdimm
Tags: 4.8-0ubuntu1
* New upstream release: 4.8 (LP: #387812)
* adjust patches to changed upstreanm codebase
  - update debian/patches/99_configure.patch
* update shlibs symbols to include new API elements
  - update debian/libnspr4-0d.symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
#include <stdlib.h>
66
66
#include <string.h>
67
67
 
68
 
#ifdef XP_MAC
69
 
#include "prlog.h"
70
 
#define printf PR_LogPrint
71
 
#endif
72
68
PRIntn failed_already=0;
73
69
PRIntn debug_mode;
74
70
 
163
159
    PR_Init(PR_USER_THREAD, PR_PRIORITY_NORMAL, 0);
164
160
    PR_STDIO_INIT();
165
161
 
166
 
#ifdef XP_MAC
167
 
        SetupMacPrintfLog("joinuu.log");
168
 
#endif
169
 
 
170
 
        
171
 
        
172
162
 /* main test */
173
163
    if (debug_mode) printf("User-User test\n");
174
164
    runTest(PR_LOCAL_THREAD, PR_LOCAL_THREAD);
187
177
}
188
178
 
189
179
 
190
 
PRIntn main(PRIntn argc, char **argv)
 
180
int main(int argc, char **argv)
191
181
{
192
182
    PRIntn rv;
193
183