File: modeline.h

package info (click to toggle)
modeline 0.6.5-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 340 kB
  • ctags: 66
  • sloc: sh: 1,965; ansic: 710; makefile: 57
file content (41 lines) | stat: -rw-r--r-- 693 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef _MODELINE_H
#  define _MODELINE_H
#
#  ifdef HAVE_CONFIG_H
#    include <config.h>
#  endif
#
#  ifdef STDC_HEADERS
#    include <stdio.h>
#    include <stdlib.h>
#    include <stdarg.h>
#    include <string.h>
#  endif
#
#  ifdef TIME_WITH_SYS_TIME_H
#    include <sys/time.h>
#    include <time.h>
#  else
#    ifdef HAVE_SYS_TIME_H
#      include <sys/time.h>
#    else
#      include <time.h>
#    endif
#  endif
#
#  ifdef HAVE_PWD_H
#    include <pwd.h>
#  endif
#
#  include <unistd.h>
#  include <ctype.h>
#  include <fcntl.h>
#  include <math.h>
#  include <getopt.h>
#  include <sys/types.h>
#  include <sys/stat.h>
#
#  include "structs.h"
#  include "functions.h"
#
#endif