summaryrefslogtreecommitdiff
path: root/src/network/h_errno.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-05-16 20:14:30 -0400
committerRich Felker <dalias@aerifal.cx>2012-05-16 20:14:30 -0400
commit01e94c46231f2670e9b0c1962f10de646674fded (patch)
treeb09115cc5c010c6e7f68178cfc3d96b3888dd06a /src/network/h_errno.c
parentc5f3add3254de442f90f8102503c6df7b39e941e (diff)
downloadmusl-01e94c46231f2670e9b0c1962f10de646674fded.tar.gz
fix misplaced semicolon in preprocessor directive (#undef h_errno)
Diffstat (limited to 'src/network/h_errno.c')
-rw-r--r--src/network/h_errno.c2
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)