diff options
| author | Jakob Kaivo <jkk@ung.org> | 2019-02-09 13:14:01 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2019-02-09 13:14:01 -0500 |
| commit | 253a32e2f9ff1cbb8edbe7c79834a678daebeb93 (patch) | |
| tree | 599cf5baf01c6dae33a2f89989b08b7d553f7fd0 /src/sys/types | |
| parent | 88d0b5e7ffbf0554b236dc46225846061b5f4817 (diff) | |
merge POSIX.1-1988/1990
Diffstat (limited to 'src/sys/types')
| -rw-r--r-- | src/sys/types/dev_t.c | 6 | ||||
| -rw-r--r-- | src/sys/types/gid_t.c | 6 | ||||
| -rw-r--r-- | src/sys/types/ino_t.c | 6 | ||||
| -rw-r--r-- | src/sys/types/mode_t.c | 6 | ||||
| -rw-r--r-- | src/sys/types/nlink_t.c | 6 | ||||
| -rw-r--r-- | src/sys/types/off_t.c | 6 | ||||
| -rw-r--r-- | src/sys/types/pid_t.c | 6 | ||||
| -rw-r--r-- | src/sys/types/ssize_t.c | 7 | ||||
| -rw-r--r-- | src/sys/types/uid_t.c | 6 |
9 files changed, 55 insertions, 0 deletions
diff --git a/src/sys/types/dev_t.c b/src/sys/types/dev_t.c new file mode 100644 index 00000000..5a98787f --- /dev/null +++ b/src/sys/types/dev_t.c @@ -0,0 +1,6 @@ +#include <sys/types.h> + +typedef unsigned long long int dev_t; +/* +POSIX(1) +*/ diff --git a/src/sys/types/gid_t.c b/src/sys/types/gid_t.c new file mode 100644 index 00000000..b62344a9 --- /dev/null +++ b/src/sys/types/gid_t.c @@ -0,0 +1,6 @@ +#include <sys/types.h> + +typedef unsigned long long int gid_t; +/* +POSIX(1) +*/ diff --git a/src/sys/types/ino_t.c b/src/sys/types/ino_t.c new file mode 100644 index 00000000..a563dd7b --- /dev/null +++ b/src/sys/types/ino_t.c @@ -0,0 +1,6 @@ +#include <sys/types.h> + +typedef unsigned long long int ino_t; +/* +POSIX(1) +*/ diff --git a/src/sys/types/mode_t.c b/src/sys/types/mode_t.c new file mode 100644 index 00000000..9b68ed05 --- /dev/null +++ b/src/sys/types/mode_t.c @@ -0,0 +1,6 @@ +#include <sys/types.h> + +typedef unsigned long int mode_t; +/* +POSIX(1) +*/ diff --git a/src/sys/types/nlink_t.c b/src/sys/types/nlink_t.c new file mode 100644 index 00000000..68eb4f84 --- /dev/null +++ b/src/sys/types/nlink_t.c @@ -0,0 +1,6 @@ +#include <sys/types.h> + +typedef unsigned long long int nlink_t; +/* +POSIX(1) +*/ diff --git a/src/sys/types/off_t.c b/src/sys/types/off_t.c new file mode 100644 index 00000000..f9056020 --- /dev/null +++ b/src/sys/types/off_t.c @@ -0,0 +1,6 @@ +#include <sys/types.h> + +typedef long long int off_t; +/* +POSIX(1) +*/ diff --git a/src/sys/types/pid_t.c b/src/sys/types/pid_t.c new file mode 100644 index 00000000..91307c09 --- /dev/null +++ b/src/sys/types/pid_t.c @@ -0,0 +1,6 @@ +#include <sys/types.h> + +typedef long int pid_t; +/* +POSIX(1) +*/ diff --git a/src/sys/types/ssize_t.c b/src/sys/types/ssize_t.c new file mode 100644 index 00000000..2bfdef89 --- /dev/null +++ b/src/sys/types/ssize_t.c @@ -0,0 +1,7 @@ +#include <sys/types.h> + +typedef long int ssize_t; + +/* +POSIX(1) +*/ diff --git a/src/sys/types/uid_t.c b/src/sys/types/uid_t.c new file mode 100644 index 00000000..ab37f521 --- /dev/null +++ b/src/sys/types/uid_t.c @@ -0,0 +1,6 @@ +#include <sys/types.h> + +typedef unsigned long long int uid_t; +/* +POSIX(1) +*/ |
