diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-19 21:57:45 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-19 21:57:45 +0200 |
commit | fa7584cb8627e3e4226b26ef1bff42f82b8eee1e (patch) | |
tree | 46a20dea1ca10f0b74cfc12d180b25982a0cef31 /src/netbeans.c | |
parent | b702c84d0d3d9874a224d81b379f9287b4a58399 (diff) | |
download | vim-fa7584cb8627e3e4226b26ef1bff42f82b8eee1e.zip |
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Better autoconf check for uint32_t.
Diffstat (limited to 'src/netbeans.c')
-rw-r--r-- | src/netbeans.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/netbeans.c b/src/netbeans.c index e058f9e8e..93a9aea75 100644 --- a/src/netbeans.c +++ b/src/netbeans.c @@ -43,12 +43,6 @@ # define sock_close(sd) closesocket(sd) # define sleep(t) Sleep(t*1000) /* WinAPI Sleep() accepts milliseconds */ #else - /* uint32_t may be defined by configure, but netdb.h indirectly includes - * stdint.h which tries to typedef uint32_t and fails. */ -# ifdef uint32_t -# undef uint32_t -# undef __uint32_t_defined -# endif # include <netdb.h> # include <netinet/in.h> # include <sys/socket.h> |