blob: 177b95ce19b5d65b3cea6b6c37b79dea4c5e0527 (
plain)
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
|
Description:
A <unistd.h> for systems lacking it.
Files:
m4/unistd_h.m4
Depends-on:
configure.ac:
gl_HEADER_UNISTD
Makefile.am:
BUILT_SOURCES += $(UNISTD_H)
# We need the following in order to create an empty placeholder for
# <unistd.h> when the system doesn't have one.
unistd.h:
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
echo '/* Empty placeholder for $@. */'; \
} > $@
MOSTLYCLEANFILES += unistd.h
Include:
#include <unistd.h>
License:
LGPL
Maintainer:
Simon Josefsson
|