Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / include / ircd_string.h
index 778a0287b96766fc881618acd6f25dec80cce117..3f97249cdb03b11d976c7acdc6e704d4af1e6a61 100644 (file)
@@ -5,9 +5,6 @@
  */
 #ifndef INCLUDED_ircd_string_h
 #define INCLUDED_ircd_string_h
-#ifndef INCLUDED_config_h
-#include "config.h"
-#endif
 #ifndef INCLUDED_ircd_chattr_h
 #include "ircd_chattr.h"
 #endif
@@ -36,8 +33,6 @@ extern const char* ircd_ntoa_r(char* buf, const char* addr);
 extern char*       host_from_uh(char* buf, const char* userhost, size_t len);
 extern char*       ircd_strtok(char** save, char* str, char* fs);
 
-extern char*       sprintf_irc(char* str, const char* format, ...); 
-
 extern char*       canonize(char* buf);
 
 #define DupString(x, y)  (strcpy((x = (char*) MyMalloc(strlen(y) + 1)), y))