~ubuntu-branches/ubuntu/saucy/nspr/saucy-updates

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/src/misc/prlong.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:
42
42
static PRInt64 ll_minint = LL_INIT( 0x80000000, 0x00000000 );
43
43
static PRUint64 ll_maxuint = LL_INIT( 0xffffffff, 0xffffffff );
44
44
 
45
 
#if defined(HAVE_WATCOM_BUG_2)
46
 
PRInt64 __pascal __loadds __export
47
 
    LL_Zero(void) { return ll_zero; }
48
 
PRInt64 __pascal __loadds __export
49
 
    LL_MaxInt(void) { return ll_maxint; }
50
 
PRInt64 __pascal __loadds __export
51
 
    LL_MinInt(void) { return ll_minint; }
52
 
PRUint64 __pascal __loadds __export
53
 
    LL_MaxUint(void) { return ll_maxuint; }
54
 
#else
55
45
PR_IMPLEMENT(PRInt64) LL_Zero(void) { return ll_zero; }
56
46
PR_IMPLEMENT(PRInt64) LL_MaxInt(void) { return ll_maxint; }
57
47
PR_IMPLEMENT(PRInt64) LL_MinInt(void) { return ll_minint; }
58
48
PR_IMPLEMENT(PRUint64) LL_MaxUint(void) { return ll_maxuint; }
59
 
#endif
60
49
 
61
50
#ifndef HAVE_LONG_LONG
62
51
/*