Removed the HAVE_STRERROR directive and our replacement strerror() function for ...
[citadel.git] / textclient / src / routines.c
index 33e05c81a5cc0758bd0146c7e5f7ea4bdf942beb..3ec4a3c9860630f3ad05e5c97bf81e0c990cc57f 100644 (file)
@@ -433,20 +433,6 @@ void strproc(char *string)
 }
 
 
-#ifndef HAVE_STRERROR
-/*
- * replacement strerror() for systems that don't have it
- */
-char *strerror(int e)
-{
-       static char buf[128];
-
-       snprintf(buf, sizeof buf, "errno = %d",e);
-       return(buf);
-}
-#endif
-
-
 void progress(CtdlIPC* ipc, unsigned long curr, unsigned long cmax)
 {
        static char dots[] =