The restrict keyboard was introduced with C99, but we are aiming for
C89 compatibility. 



git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3374 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/common/os/net.h b/common/os/net.h
index 7247103..acaf50f 100644
--- a/common/os/net.h
+++ b/common/os/net.h
@@ -42,8 +42,8 @@
 
 /* IPv4-only stub implementation */
 #ifndef HAVE_INET_NTOP
-const char *tight_inet_ntop(int af, const void *restrict src,
-			    char *restrict dst, socklen_t size);
+const char *tight_inet_ntop(int af, const void *src,
+			    char *dst, socklen_t size);
 #define inet_ntop tight_inet_ntop
 #endif