From: Ulrich Drepper Date: Sat, 20 Jul 2002 04:13:31 +0000 (+0000) Subject: (__rlimit_resource_t, __rusage_who_t, __priority_which_t): Always typedef to X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=99979dd8686f543f9e422cf1a08619b390cc0c8b;p=thirdparty%2Fglibc.git (__rlimit_resource_t, __rusage_who_t, __priority_which_t): Always typedef to int for C++. --- diff --git a/resource/sys/resource.h b/resource/sys/resource.h index e64a08672c2..3dd2da92914 100644 --- a/resource/sys/resource.h +++ b/resource/sys/resource.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 94, 96, 97, 98, 99, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1992,94,96,97,98,99,2000,2002 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 @@ -35,7 +35,7 @@ __BEGIN_DECLS `int' as the type for the first argument. When we are compiling with GNU extensions we change this slightly to provide better error checking. */ -#ifdef __USE_GNU +#if defined __USE_GNU && !defined __cplusplus typedef enum __rlimit_resource __rlimit_resource_t; typedef enum __rusage_who __rusage_who_t; typedef enum __priority_which __priority_which_t;