summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Xtransint.h12
-rw-r--r--transport.c2
2 files changed, 13 insertions, 1 deletions
diff --git a/Xtransint.h b/Xtransint.h
index e1a95a2..623cdef 100644
--- a/Xtransint.h
+++ b/Xtransint.h
@@ -345,6 +345,18 @@ static int TRANS(WriteV)(
#endif /* CRAY || WIN32 || __sxg__ */
+
+static int is_numeric (
+ char * /* str */
+);
+
+#ifdef TRANS_SERVER
+static int trans_mkdir (
+ char *, /* path */
+ int /* mode */
+);
+#endif
+
/*
* Some XTRANSDEBUG stuff
*/
diff --git a/transport.c b/transport.c
index baf5bfd..5131d99 100644
--- a/transport.c
+++ b/transport.c
@@ -59,7 +59,6 @@ from The Open Group.
#endif
#include "Xtransint.h"
-#include "Xtransutil.c"
#ifdef LOCALCONN
#include "Xtranslcl.c"
@@ -71,3 +70,4 @@ from The Open Group.
#include "Xtranstli.c"
#endif
#include "Xtrans.c"
+#include "Xtransutil.c"