File: ftime.h

package info (click to toggle)
fvwm 2.5.12-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 17,484 kB
  • ctags: 14,227
  • sloc: ansic: 156,647; perl: 9,259; sh: 4,723; makefile: 1,100; yacc: 683; lex: 169; sed: 11
file content (13 lines) | stat: -rw-r--r-- 193 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* -*-c-*- */
#include "config.h"

#if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# if HAVE_SYS_TIME_H
#  include <sys/time.h>
# else
#  include <time.h>
# endif
#endif