diff --git a/src/modules/files/file.c b/src/modules/files/file.c
index 31913f3bf561b927b45bb46a6aa8542865e1efcc..c623b68eb43255643c3525839169dc19768a81f2 100644
--- a/src/modules/files/file.c
+++ b/src/modules/files/file.c
@@ -6,7 +6,7 @@
 #define READ_BUFFER 16384
 
 #include "global.h"
-RCSID("$Id: file.c,v 1.13 1996/11/18 23:13:05 hubbe Exp $");
+RCSID("$Id: file.c,v 1.14 1996/11/26 02:28:58 hubbe Exp $");
 #include "types.h"
 #include "interpret.h"
 #include "svalue.h"
@@ -37,6 +37,12 @@ RCSID("$Id: file.c,v 1.13 1996/11/18 23:13:05 hubbe Exp $");
 
 #ifdef HAVE_SYS_STREAM_H
 #include <sys/stream.h>
+
+/* Ugly patch for AIX 3.2 */
+#ifdef u
+#undef u
+#endif
+
 #endif
 
 #ifdef HAVE_SYS_PROTOSW_H
diff --git a/src/modules/files/socket.c b/src/modules/files/socket.c
index 6ab53144aeaf28fa8e2cf5394fac458b261d5dec..ad8fe9186906ac3a6d6913124c11c04da9f7902c 100644
--- a/src/modules/files/socket.c
+++ b/src/modules/files/socket.c
@@ -31,6 +31,12 @@
 
 #ifdef HAVE_SYS_STREAM_H
 #include <sys/stream.h>
+
+/* Ugly patch for AIX 3.2 */
+#ifdef u
+#undef u
+#endif
+
 #endif
 
 #ifdef HAVE_SYS_PROTOSW_H