diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-10-15 09:46:31 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-10-15 09:46:31 +0000 |
commit | 6b6187a921c4afc835e0d74d565dd3acb8b3b864 (patch) | |
tree | 730a9c7b9c3fd0664231646783ad0797cb1ea809 /usr.bin/pcc/ccconfig.h | |
parent | 7326d90b30b32a9e08996a8ce23095668081e97b (diff) |
now that pcc knows the __inline__ keyword, no need to -D it to inline
Diffstat (limited to 'usr.bin/pcc/ccconfig.h')
-rw-r--r-- | usr.bin/pcc/ccconfig.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/pcc/ccconfig.h b/usr.bin/pcc/ccconfig.h index 4b86e2185ef..0e15a27e4a4 100644 --- a/usr.bin/pcc/ccconfig.h +++ b/usr.bin/pcc/ccconfig.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ccconfig.h,v 1.1 2007/10/07 17:58:50 otto Exp $ */ +/* $OpenBSD: ccconfig.h,v 1.2 2007/10/15 09:46:30 otto Exp $ */ /* * Copyright (c) 2004 Anders Magnusson (ragge@ludd.luth.se). @@ -32,7 +32,7 @@ */ /* common cpp predefines */ -#define CPPADD { "-D__OpenBSD__", "-D__unix__", "-D__inline__=inline", NULL } +#define CPPADD { "-D__OpenBSD__", "-D__unix__", NULL } #define DYNLINKER { "-dynamic-linker", "/usr/libexec/ld.so", NULL } #define CRT0FILE "/usr/lib/crt0.o" #define STARTFILES { "/usr/lib/crtbegin.o", NULL } |