From: Ulrich Drepper Date: Fri, 30 Jan 1998 18:02:24 +0000 (+0000) Subject: (__ipc_pid_t): Change to unsigned short, not short. X-Git-Tag: cvs/before-sparc-2_0_x-branch~227 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c409e090e58eba568a38c44414acf740ff7151b;p=thirdparty%2Fglibc.git (__ipc_pid_t): Change to unsigned short, not short. --- diff --git a/sysdeps/unix/sysv/linux/gnu/types.h b/sysdeps/unix/sysv/linux/gnu/types.h index 4e78e801dd1..193fe32412b 100644 --- a/sysdeps/unix/sysv/linux/gnu/types.h +++ b/sysdeps/unix/sysv/linux/gnu/types.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 94, 95, 96, 97 Free Software Foundation, Inc. +/* Copyright (C) 1991, 92, 94, 95, 96, 97, 98 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -86,6 +86,6 @@ typedef struct typedef int __key_t; -typedef short int __ipc_pid_t; +typedef unsigned short int __ipc_pid_t; #endif /* gnu/types.h */