/* $Id: time.h 4020 2000-10-03 01:27:13Z rra $ ** ** Portability wrapper around and . ** ** This header includes and as applicable, handling ** systems where one can't include both headers (per the autoconf manual). */ #ifndef PORTABLE_TIME_H #define PORTABLE_TIME_H 1 #include "config.h" #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif #endif /* PORTABLE_TIME_H */