diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-05-16 20:14:30 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-05-16 20:14:30 -0400 |
commit | 01e94c46231f2670e9b0c1962f10de646674fded (patch) | |
tree | b09115cc5c010c6e7f68178cfc3d96b3888dd06a /src/network/h_errno.c | |
parent | c5f3add3254de442f90f8102503c6df7b39e941e (diff) | |
download | musl-01e94c46231f2670e9b0c1962f10de646674fded.tar.gz musl-01e94c46231f2670e9b0c1962f10de646674fded.tar.xz musl-01e94c46231f2670e9b0c1962f10de646674fded.zip |
fix misplaced semicolon in preprocessor directive (#undef h_errno)
Diffstat (limited to 'src/network/h_errno.c')
-rw-r--r-- | src/network/h_errno.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/h_errno.c b/src/network/h_errno.c index 5560234c..4f700cea 100644 --- a/src/network/h_errno.c +++ b/src/network/h_errno.c @@ -1,6 +1,6 @@ #include <netdb.h> -#undef h_errno; +#undef h_errno int h_errno; int *__h_errno_location(void) |