* include/getopt.h: Protect a declaratin.
This commit is contained in:
parent
c02e32c9bd
commit
dcd8b9be82
|
@ -1,9 +1,14 @@
|
||||||
|
2001-12-26 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
|
* include/getopt.h: Protect a declaratin.
|
||||||
|
|
||||||
2001-12-26 Robert Collins <rbtcollins@hotmail.com>
|
2001-12-26 Robert Collins <rbtcollins@hotmail.com>
|
||||||
|
|
||||||
* thread.cc (pthread_cond::Signal): Use a separate flag for signal detection
|
* thread.cc (pthread_cond::Signal): Use a separate flag for signal
|
||||||
and broadcast semantics.
|
detection and broadcast semantics.
|
||||||
(__pthread_cond_dowait): Ditto.
|
(__pthread_cond_dowait): Ditto.
|
||||||
* thread.h (pthread_cond): New flag for testing when a waiter has woken.
|
* thread.h (pthread_cond): New flag for testing when a waiter has
|
||||||
|
woken.
|
||||||
|
|
||||||
2001-12-26 Christopher Faylor <cgf@redhat.com>
|
2001-12-26 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
|
|
|
@ -68,7 +68,9 @@ struct option {
|
||||||
};
|
};
|
||||||
|
|
||||||
int getopt_long (int, char *const *, const char *, const struct option *, int *);
|
int getopt_long (int, char *const *, const char *, const struct option *, int *);
|
||||||
#define HAVE_DECL_GETOPT 1
|
#ifndef HAVE_DECL_GETOPT
|
||||||
|
#define HAVE_DECL_GETOPT 0
|
||||||
|
#endif
|
||||||
|
|
||||||
#define no_argument 0
|
#define no_argument 0
|
||||||
#define required_argument 1
|
#define required_argument 1
|
||||||
|
|
Loading…
Reference in New Issue