diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-05-10 02:36:26 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-05-10 02:36:26 +0000 |
commit | b32f8986c8d688b879c13a31e66a7debe5502d64 (patch) | |
tree | 4274aca5068fd6bce046574b0b651d2f101f2609 /sbin/routed | |
parent | 71750278f2a5f1df2b5263046b8c905bf69f282b (diff) |
() macro params; jan.niemann@tu-bs.de
Diffstat (limited to 'sbin/routed')
-rw-r--r-- | sbin/routed/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/routed/Makefile b/sbin/routed/Makefile index 5beaf908a95..943a8ec0733 100644 --- a/sbin/routed/Makefile +++ b/sbin/routed/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.15 2004/04/25 16:28:32 itojun Exp $ +# $OpenBSD: Makefile,v 1.16 2006/05/10 02:36:25 deraadt Exp $ PROG= routed SRCS= if.c input.c main.c output.c parms.c radix.c rdisc.c table.c trace.c MAN= routed.8 -CFLAGS+=-D_ROUTED -D'min(a,b)=(a < b ? a : b)' -D'log=syslog' +CFLAGS+=-D_ROUTED -D'min(a,b)=((a) < (b) ? (a) : (b))' -D'log=syslog' CFLAGS+=-D'panic(s)={log(LOG_ERR, "%s", s); exit(1);}' SUBDIR= rtquery |