Skip to content

Commit

Permalink
Fix isomac test after recent header change.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Dec 24, 2009
1 parent 7ed319d commit 63de5ef
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2009-12-23 Ulrich Drepper <drepper@redhat.com>

* include/stdlib.h: Exclude some includes and prototypes if _ISOMAC
is defined.

2009-12-22 Samuel Thibault <samuel.thibault@ens-lyon.org>

* hurd/hurdioctl.c (_hurd_locked_install_cttyid): Set newctty to
Expand Down
6 changes: 5 additions & 1 deletion include/stdlib.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@

/* Now define the internal interfaces. */
#ifndef __Need_M_And_C
# include <sys/stat.h>
# ifndef _ISOMAC
# include <sys/stat.h>
# endif

__BEGIN_DECLS

Expand Down Expand Up @@ -78,8 +80,10 @@ extern int __clearenv (void);
extern char *__canonicalize_file_name (__const char *__name);
extern char *__realpath (__const char *__name, char *__resolved);
extern int __ptsname_r (int __fd, char *__buf, size_t __buflen);
# ifndef _ISOMAC
extern int __ptsname_internal (int fd, char *buf, size_t buflen,
struct stat64 *stp);
# endif
extern int __getpt (void);
extern int __posix_openpt (int __oflag);

Expand Down

0 comments on commit 63de5ef

Please sign in to comment.