diff options
Diffstat (limited to 'bits')
-rw-r--r-- | bits/ipc.h | 5 | ||||
-rw-r--r-- | bits/types.h | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/bits/ipc.h b/bits/ipc.h index 58f419be1d..7e38fdf5ea 100644 --- a/bits/ipc.h +++ b/bits/ipc.h @@ -1,6 +1,5 @@ -/* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1995, 1996, 1997, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as @@ -21,7 +20,7 @@ # error "Never use <bits/ipc.h> directly; include <sys/ipc.h> instead." #endif -#include <sys/types.h> +#include <bits/types.h> /* Mode bits for `msgget', `semget', and `shmget'. */ #define IPC_CREAT 01000 /* create key if key does not exist */ diff --git a/bits/types.h b/bits/types.h index 8d2061235d..fd9818e15d 100644 --- a/bits/types.h +++ b/bits/types.h @@ -115,6 +115,9 @@ typedef struct typedef unsigned short int __ipc_pid_t; +/* Type to represent block size. */ +typedef unsigned int __blksize_t; + /* Types from the Large File Support interface. */ /* Type to count number os disk blocks. */ |