File: sys.h

package info (click to toggle)
libcwd 1.0.4-1.1
  • links: PTS
  • area: non-free
  • in suites: jessie, jessie-kfreebsd
  • size: 8,136 kB
  • ctags: 10,313
  • sloc: cpp: 23,354; sh: 9,798; ansic: 1,172; makefile: 852; exp: 234; awk: 11
file content (11 lines) | stat: -rw-r--r-- 354 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
// This is just an example of what you could do when using autoconf for your project.
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
// This is needed so that others can compile your application without having libcwd installed.
#ifdef CWDEBUG
#ifndef _GNU_SOURCE
#define _GNU_SOURCE		// Libcwd uses GNU extensions.
#endif
#include <libcwd/sys.h>
#endif