diff options
author | 2007-10-15 09:46:30 +0000 | |
---|---|---|
committer | 2007-10-15 09:46:30 +0000 | |
commit | 84ea4553693538172c1f99fcd543d9b4eeda1c7e (patch) | |
tree | 5ec925df21a4bb0e96909d8e7eb8a5f2059f489b | |
parent | catch privileged actions as well; hint from miod@ (diff) | |
download | wireguard-openbsd-84ea4553693538172c1f99fcd543d9b4eeda1c7e.tar.xz wireguard-openbsd-84ea4553693538172c1f99fcd543d9b4eeda1c7e.zip |
now that pcc knows the __inline__ keyword, no need to -D it to inline
-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 } |