summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/math.h2
-rw-r--r--libc/misc/syslog/syslog.c2
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));
}