Skip to content

Commit

Permalink
Fix glob.h for XPG7.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Jan 10, 2010
1 parent 18598ff commit df06f48
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
[BZ #11125]
* libio/stdio.h: Define va_list, off_t, and ssize_t.

* posix/glob.h: Define size_t.

2010-01-10 Ulrich Drepper <drepper@redhat.com>

* conform/conformtest.pl: For XPG7 testing the headers are supposed to
Expand Down
5 changes: 3 additions & 2 deletions posix/glob.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* Copyright (C) 1991,92,95-98,2000,2001,2004 Free Software Foundation, Inc.
/* Copyright (C) 1991,1992,1995-1998,2000,2001,2004,2010
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
Expand Down Expand Up @@ -27,7 +28,7 @@ __BEGIN_DECLS
#ifndef __size_t
# if defined __GNUC__ && __GNUC__ >= 2
typedef __SIZE_TYPE__ __size_t;
# ifdef __USE_XOPEN
# if defined __USE_XOPEN || __USE_XOPEN2K8
typedef __SIZE_TYPE__ size_t;
# endif
# else
Expand Down

0 comments on commit df06f48

Please sign in to comment.