nightmaremail

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

strerr_sys.c (274B)


      1 #include "error.h"
      2 #include "strerr.h"
      3 
      4 /* explicit initialization due to linker error on Mac OS X. dorks. */
      5 struct strerr strerr_sys = {0,0,0,0};
      6 
      7 void strerr_sysinit()
      8 {
      9   strerr_sys.who = 0;
     10   strerr_sys.x = error_str(errno);
     11   strerr_sys.y = "";
     12   strerr_sys.z = "";
     13 }