diff options
Diffstat (limited to 'imap/src/osdep/unix/os_art.c')
-rw-r--r-- | imap/src/osdep/unix/os_art.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/imap/src/osdep/unix/os_art.c b/imap/src/osdep/unix/os_art.c index 8fb78028..f3111c01 100644 --- a/imap/src/osdep/unix/os_art.c +++ b/imap/src/osdep/unix/os_art.c @@ -36,7 +36,9 @@ #include <arpa/inet.h> #include <netdb.h> #include <errno.h> -extern int errno; +#ifndef errno +extern int errno; /* just in case */ +#endif #include <pwd.h> #include <sys/socket.h> #include <time.h> |