fix for Irix

This commit is contained in:
David Rose 2001-07-03 19:27:02 +00:00
parent 098b344ac7
commit 8fa1e89a8d
2 changed files with 5 additions and 1 deletions

View File

@ -20,11 +20,15 @@ extern "C" {
#include <stdlib.h>
#include <fcntl.h>
typedef double dblparam_t;
#ifdef __GNUCC__
#ifdef __STRICT_ANSI__
#define INLINE __inline__
#else
#define INLINE inline
#endif
#else
#define INLINE
#endif
#define GLOBALDATA(TYPE,NAME) extern TYPE NAME
#ifdef __cplusplus
}

View File

@ -53,7 +53,7 @@
* strings unsigned char*
*/
#ifndef PROTYPES_H
// panda comment: int8 already defined in with nspr\include\obsolete\protypes.h
/* panda comment: int8 already defined in with nspr\include\obsolete\protypes.h */
#ifdef __STDC__
typedef signed char int8; /* NB: non-ANSI compilers may not grok */
#else