Use -I instead of -isystem for system header directories when building
with gcc 4. Fixed resulting build errors (gcc is more lenient for headers in -isystem directories). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20386 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -37,7 +37,7 @@ enum {
|
||||
_ISxdigit = 0x1000, /* hexadecimal digit */
|
||||
_ISspace = 0x2000, /* white space */
|
||||
_ISprint = 0x4000, /* printing */
|
||||
_ISgraph = 0x8000, /* graphical */
|
||||
_ISgraph = 0x8000 /* graphical */
|
||||
};
|
||||
|
||||
/* Characteristics */
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
typedef struct _IO_FILE FILE;
|
||||
|
||||
#define __PRINTFLIKE(format, varargs) __attribute__ ((__format__ (__printf__, format, varargs)));
|
||||
#define __PRINTFLIKE(format, varargs) __attribute__ ((__format__ (__printf__, format, varargs)))
|
||||
#define __SCANFLIKE(format, varargs) __attribute__((__format__ (__scanf__, format, varargs)))
|
||||
|
||||
#endif /* _STDIO_PRE_H_ */
|
||||
|
||||
Reference in New Issue
Block a user