sortix-mirror/libc/include/sys/types.h

62 lines
1.6 KiB
C
Raw Normal View History

2012-09-28 22:36:46 +00:00
/*******************************************************************************
2011-08-05 12:25:00 +00:00
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2013.
2011-08-05 12:25:00 +00:00
This file is part of the Sortix C Library.
2011-08-05 12:25:00 +00:00
The Sortix C Library is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or (at your
option) any later version.
2011-08-05 12:25:00 +00:00
The Sortix C Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
2011-08-05 12:25:00 +00:00
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
2011-08-05 12:25:00 +00:00
sys/types.h
Data types.
2011-08-05 12:25:00 +00:00
2012-09-28 22:36:46 +00:00
*******************************************************************************/
2011-08-05 12:25:00 +00:00
// TODO: Make this header comply with POSIX-1.2008
#ifndef INCLUDE_SYS_TYPES_H
#define INCLUDE_SYS_TYPES_H
2011-08-05 12:25:00 +00:00
#include <features.h>
__BEGIN_DECLS
@include(blkcnt_t.h)
@include(blksize_t.h)
@include(clock_t.h)
@include(clockid_t.h)
@include(dev_t.h)
/* TODO: fsblkcnt_t */
/* TODO: fsfilcnt_t */
@include(gid_t.h)
/* TODO: id_t */
@include(ino_t.h)
/* TODO: key_t */
@include(mode_t.h)
@include(nlink_t.h)
@include(off_t.h)
@include(pid_t.h)
/* TODO: pthread*_t */
@include(size_t.h)
@include(ssize_t.h)
@include(suseconds_t.h)
@include(time_t.h)
/* TODO: timer_t */
/* TODO: trace*_t */
@include(uid_t.h)
@include(useconds_t.h)
2011-08-05 12:25:00 +00:00
__END_DECLS
#endif