Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / contrib / libio / iostrerror.c
1 /* This should be replaced by whatever namespace-clean
2    version of strerror you have available. */
3
4 #include "libioP.h"
5 extern char *strerror __P ((int));
6
7 char *
8 _IO_strerror (errnum)
9      int errnum;
10 {
11   return strerror(errnum);
12 }