~ubuntu-branches/ubuntu/lucid/nspr/lucid-updates

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/include/prlog.h

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2010-03-24 14:33:41 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20100324143341-gf5gsvz81ck1vvp5
Tags: 4.8.4-0ubuntu1
* New upstream release: 4.8.4
* Adjust patches to changed upstream codebase
  - update debian/patches/99_configure.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
189
189
*/
190
190
NSPR_API(void) PR_LogFlush(void);
191
191
 
 
192
NSPR_API(void) PR_Assert(const char *s, const char *file, PRIntn ln);
 
193
 
192
194
#if defined(DEBUG) || defined(FORCE_PR_LOG)
193
195
#define PR_LOGGING 1
194
196
 
233
235
 
234
236
#if defined(DEBUG) || defined(FORCE_PR_ASSERT)
235
237
 
236
 
NSPR_API(void) PR_Assert(const char *s, const char *file, PRIntn ln);
237
238
#define PR_ASSERT(_expr) \
238
239
    ((_expr)?((void)0):PR_Assert(# _expr,__FILE__,__LINE__))
239
240