From daaee1de182b94fa262068cd9acddec810396452 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sat, 5 Sep 2009 21:28:31 +0200 Subject: math.h: fix trivial typo (missing !): !defined __NO_LONG_DOUBLE_MATH Signed-off-by: Denys Vlasenko --- include/math.h | 2 +- libc/misc/syslog/syslog.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/math.h b/include/math.h index a7c69b084..ecd01877c 100644 --- a/include/math.h +++ b/include/math.h @@ -135,7 +135,7 @@ __BEGIN_DECLS # if (defined __STDC__ || defined __GNUC__) \ - && (defined __NO_LONG_DOUBLE_MATH || defined __LDBL_COMPAT) + && (!defined __NO_LONG_DOUBLE_MATH || defined __LDBL_COMPAT) # ifdef __LDBL_COMPAT # ifdef __USE_ISOC99 diff --git a/libc/misc/syslog/syslog.c b/libc/misc/syslog/syslog.c index da60874b3..dbb1e0d01 100644 --- a/libc/misc/syslog/syslog.c +++ b/libc/misc/syslog/syslog.c @@ -164,7 +164,7 @@ retry: if ((LogFile = socket(AF_UNIX, logType, 0)) == -1) { goto DONE; } - fcntl(LogFile, F_SETFD, 1); /* 1 == FD_CLOEXEC */ + fcntl(LogFile, F_SETFD, FD_CLOEXEC); /* We don't want to block if e.g. syslogd is SIGSTOPed */ fcntl(LogFile, F_SETFL, O_NONBLOCK | fcntl(LogFile, F_GETFL)); } -- cgit v1.2.3