?login_element?

Subversion Repositories NedoOS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /* defs.h - common definitions.
  2.  
  3.    This is free and unencumbered software released into the public domain.
  4.    For more information, please refer to <http://unlicense.org>. */
  5.  
  6. #ifndef _DEFS_H_INCLUDED
  7. #define _DEFS_H_INCLUDED
  8.  
  9. // DEBUG is set by "make"
  10.  
  11. #if DEBUG != 1
  12. # define PROGRAM_VERSION_SUFFIX
  13. #else   // DEBUG == 1
  14. # define PROGRAM_VERSION_SUFFIX "-DEBUG"
  15. #endif  // DEBUG == 1
  16.  
  17. #define NL "\n"
  18.  
  19. #endif  /* !_DEFS_H_INCLUDED */
  20.