const.h 239 B

123456789101112131415
  1. /* const.h - constants for linker */
  2. /* Copyright (C) 1994 Bruce Evans */
  3. #define FALSE 0
  4. #define NUL_PTR ((void*)0)
  5. #define TRUE 1
  6. #define EXTERN extern
  7. #define FORWARD static
  8. #define PRIVATE static
  9. #define PUBLIC
  10. #include "config.h"