Code

Merge branch 'jl/add-p-reverse-message'
[git.git] / git-compat-util.h
index 2af8d3edbe35dce35e940c5cccb91f9e06ebeff8..d0a1e480b6445a6f5ba3680672c255ab44ca43f0 100644 (file)
 #include <assert.h>
 #include <regex.h>
 #include <utime.h>
+#include <syslog.h>
+#include <sys/poll.h>
 #ifndef __MINGW32__
 #include <sys/wait.h>
-#include <sys/poll.h>
 #include <sys/socket.h>
 #include <sys/ioctl.h>
 #include <termios.h>
@@ -386,6 +387,14 @@ static inline void *gitmempcpy(void *dest, const void *src, size_t n)
 }
 #endif
 
+#ifdef NO_INET_PTON
+int inet_pton(int af, const char *src, void *dst);
+#endif
+
+#ifdef NO_INET_NTOP
+const char *inet_ntop(int af, const void *src, char *dst, size_t size);
+#endif
+
 extern void release_pack_memory(size_t, int);
 
 typedef void (*try_to_free_t)(size_t);