Skip to content
Snippets Groups Projects
time.h 309 B
Newer Older
  • Learn to ignore specific revisions
  • /* Generic time.h */
    
    #ifndef _AC_TIME_H
    #define _AC_TIME_H
    
    #if TIME_WITH_SYS_TIME
    # include <sys/time.h>
    # include <time.h>
    #else
    
      /* Do not use #elif, not all non-ANSI compilers support it. */
    # if HAVE_SYS_TIME_H
    #  include <sys/time.h>
    # else
    #  include <time.h>
    # endif
    
    #endif
    
    #endif /* _AC_TIME_H */