]> git.saurik.com Git - apple/system_cmds.git/blobdiff - passwd.tproj/stringops.c
system_cmds-433.8.tar.gz
[apple/system_cmds.git] / passwd.tproj / stringops.c
index fcf861dbd17cee4fbb85ff30b943bfd80b97db2b..a3621e32e4dfc0b686f89cd4c09eafb55833026a 100644 (file)
@@ -242,11 +242,3 @@ char **explode(char *s, char c)
        }
        return l;
 }
-
-char *itoa(int n)
-{
-       char s[32];
-
-       sprintf(s, "%d", n);
-       return copyString(s);
-}