home *** CD-ROM | disk | FTP | other *** search
/ back2roots/padua / padua.7z / padua / uucp / duucp-1.17 / AU-117b4-src.lha / src / uucico / includes.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-24  |  460 b   |  27 lines

  1. /*
  2.  *  INCLUDES.H
  3.  */
  4.  
  5. #define NAMESIZE 256
  6.  
  7. #include "protos.h"         /*  other system protos  */
  8.  
  9. #include <stdarg.h>
  10. #include <stdio.h>
  11. #include <stdlib.h>
  12. #include <string.h>
  13. #include <ctype.h>
  14. #include <time.h>
  15. #include <signal.h>
  16. #include "config.h"         /*  lib protos and config stuff */
  17. #include "xferstat.h"
  18. #include "uucico_protos.h"  /*  uucico protos               */
  19.  
  20. #ifndef TRUE
  21. #define TRUE    1
  22. #endif
  23.  
  24. #ifndef FALSE
  25. #define FALSE    0
  26. #endif
  27.