2001-06-13  Ulrich Drepper  <drepper@redhat.com>

	* time/sys/time.h: Don't use enum __itimer_which ever for
	__itimer_which_t for C++.
	Reported by Martin Buchholz <martin@xemacs.org>.

	* po/fr.po: Update from translation team.

2001-06-12  H.J. Lu  <hjl@gnu.org>
2001-06-11  Michael Deutschmann  <michael@talamasca.ocis.net>
	    Michael Deutschmann  <michael@talamasca.ocis.net>
This commit is contained in:
Ulrich Drepper 2001-06-13 23:21:54 +00:00
parent bad6065c97
commit d002205fd2
2 changed files with 14 additions and 4 deletions

View File

@ -1,3 +1,11 @@
2001-06-13 Ulrich Drepper <drepper@redhat.com>
* time/sys/time.h: Don't use enum __itimer_which ever for
__itimer_which_t for C++.
Reported by Martin Buchholz <martin@xemacs.org>.
* po/fr.po: Update from translation team.
2001-06-12 H.J. Lu <hjl@gnu.org> 2001-06-12 H.J. Lu <hjl@gnu.org>
* configure.in: Fix typos in missing program names. * configure.in: Fix typos in missing program names.

View File

@ -112,7 +112,9 @@ struct itimerval
struct timeval it_value; struct timeval it_value;
}; };
#ifdef __USE_GNU #if defined __USE_GNU && !defined __cplusplus
/* Use the nicer parameter type only in GNU mode and not for C++ since the
strict C++ rules prevent the automatic promotion. */
typedef enum __itimer_which __itimer_which_t; typedef enum __itimer_which __itimer_which_t;
#else #else
typedef int __itimer_which_t; typedef int __itimer_which_t;