diff options
author | Daniel Sabogal <dsabogalcc@gmail.com> | 2016-09-04 10:42:48 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2016-10-20 16:55:32 -0400 |
commit | 1fa2a32d1e2d25f493058812008face73d411b2b (patch) | |
tree | 626cadd96b78c13c4d49fbceed6d1475cc051c46 | |
parent | 104e8a0e3b30f6dda6ce9c1b901a6bb8ee046616 (diff) | |
download | musl-1fa2a32d1e2d25f493058812008face73d411b2b.tar.gz musl-1fa2a32d1e2d25f493058812008face73d411b2b.tar.xz musl-1fa2a32d1e2d25f493058812008face73d411b2b.zip |
fix typo in utmpx.h
-rw-r--r-- | include/utmpx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/utmpx.h b/include/utmpx.h index 9e5cc955..0429014d 100644 --- a/include/utmpx.h +++ b/include/utmpx.h @@ -38,7 +38,7 @@ struct utmpx *getutxline(const struct utmpx *); struct utmpx *pututxline(const struct utmpx *); void setutxent(void); -#if defined(_BSD_SOURCE) | defined(_GNU_SOURCE) +#if defined(_BSD_SOURCE) || defined(_GNU_SOURCE) #define e_exit __e_exit #define e_termination __e_termination void updwtmpx(const char *, const struct utmpx *); |