~ubuntu-branches/ubuntu/precise/nspr/precise-proposed

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/tests/intrio.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:
46
46
#include <stdlib.h>
47
47
#include <string.h>
48
48
 
49
 
#ifdef XP_MAC
50
 
#include "prlog.h"
51
 
#define printf PR_LogPrint
52
 
extern void SetupMacPrintfLog(char *logFile);
53
 
#endif
54
 
 
55
49
/* for synchronization between the main thread and iothread */
56
50
static PRLock *lock;
57
51
static PRCondVar *cvar;
146
140
    }
147
141
}
148
142
 
149
 
PRIntn main(PRIntn argc, char **argv)
 
143
int main(int argc, char **argv)
150
144
{
151
145
    PR_STDIO_INIT();
152
146
    lock = PR_NewLock();