aboutsummaryrefslogtreecommitdiff
path: root/release/sysinstall/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'release/sysinstall/misc.c')
-rw-r--r--release/sysinstall/misc.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/release/sysinstall/misc.c b/release/sysinstall/misc.c
index 3f84540ccbc9..559990a0948c 100644
--- a/release/sysinstall/misc.c
+++ b/release/sysinstall/misc.c
@@ -1,7 +1,7 @@
/*
* Miscellaneous support routines..
*
- * $Id: misc.c,v 1.17 1996/04/23 01:29:29 jkh Exp $
+ * $Id: misc.c,v 1.18 1996/04/28 03:27:21 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -122,6 +122,16 @@ string_copy(char *s1, char *s2)
return s1;
}
+/* convert an integer to a string, using a static buffer */
+char *
+itoa(int value)
+{
+ static char buf[13];
+
+ snprintf(buf, 12, "%d", value);
+ return buf;
+}
+
Boolean
directory_exists(const char *dirname)
{