summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sade/misc.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1996-06-17 21:48:33 +0000
committerjkh <jkh@FreeBSD.org>1996-06-17 21:48:33 +0000
commita2bb2b476e1128fb5b0bd7bb1894f9ccbd96d751 (patch)
treed7f069af161fed62d57b0408f72958b9b8d05b0d /usr.sbin/sade/misc.c
parent257dcecd299fb32452b70b4e78fcd722579e97d0 (diff)
downloadFreeBSD-src-a2bb2b476e1128fb5b0bd7bb1894f9ccbd96d751.zip
FreeBSD-src-a2bb2b476e1128fb5b0bd7bb1894f9ccbd96d751.tar.gz
Init network at proper time.
Diffstat (limited to 'usr.sbin/sade/misc.c')
-rw-r--r--usr.sbin/sade/misc.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/usr.sbin/sade/misc.c b/usr.sbin/sade/misc.c
index 3f84540..559990a 100644
--- a/usr.sbin/sade/misc.c
+++ b/usr.sbin/sade/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)
{
OpenPOWER on IntegriCloud