time.c 196 B

1234567891011121314151617
  1. /* $Source$
  2. * $State$
  3. * $Revision$
  4. */
  5. #include <stdlib.h>
  6. #include <errno.h>
  7. #include <unistd.h>
  8. #include <time.h>
  9. #include "libsys.h"
  10. time_t time(time_t* t)
  11. {
  12. if (t)
  13. *t = 0;
  14. return 0;
  15. }