diff options
| author | Ulrich Drepper <drepper@redhat.com> | 2006-01-04 09:26:31 +0000 |
|---|---|---|
| committer | Ulrich Drepper <drepper@redhat.com> | 2006-01-04 09:26:31 +0000 |
| commit | db59b28bdd429d57d82c0c39ed1eab00ce0a9da3 (patch) | |
| tree | 90a58466d890174c74ca29078b6b18c1f72f2eb9 /nptl | |
| parent | b268486e602b42929fc4eed8ec2188e6686a02f1 (diff) | |
| download | glibc-db59b28bdd429d57d82c0c39ed1eab00ce0a9da3.tar.xz glibc-db59b28bdd429d57d82c0c39ed1eab00ce0a9da3.zip | |
* include/stdlib.h: Make even more C++ compliant.
Diffstat (limited to 'nptl')
| -rw-r--r-- | nptl/ChangeLog | 4 | ||||
| -rw-r--r-- | nptl/tst-cancel24.cc | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 65de3506a8..3eb63f02b4 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,7 @@ +2006-01-04 Ulrich Drepper <drepper@redhat.com> + + * tst-cancel24.cc: Use C headers instead of C++ headers. + 2006-01-03 Jakub Jelinek <jakub@redhat.com> * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Remove #error for diff --git a/nptl/tst-cancel24.cc b/nptl/tst-cancel24.cc index 52cf079d5a..1af709a8ca 100644 --- a/nptl/tst-cancel24.cc +++ b/nptl/tst-cancel24.cc @@ -1,7 +1,7 @@ -#include <cstdlib> -#include <cstdio> #include <pthread.h> #include <semaphore.h> +#include <stdlib.h> +#include <stdio.h> #include <unistd.h> |
