File: config.h

package info (click to toggle)
sysfsutils 2.1.1-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 656 kB
  • sloc: ansic: 7,344; perl: 95; makefile: 69; sh: 59
file content (20 lines) | stat: -rw-r--r-- 279 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Config header for libsysfs example programs.
 */

#ifndef SYSFS_CONFIG_H
#define SYSFS_CONFIG_H 1

#ifndef _GNU_SOURCE
#define _GNU_SOURCE 1
#endif

#ifndef _POSIX_SOURCE
#define _POSIX_SOURCE 1
#endif

#ifndef _FILE_OFFSET_BITS
#define _FILE_OFFSET_BITS 64
#endif

#endif