2004-04-01 Artem B. Bityuckiy <abitytsky@softminecorp.com>
* libc/time/strptime.c: Add standard includes to avoid warning messages at compilation time.
This commit is contained in:
parent
38f4f02370
commit
59c9f5f586
|
@ -1,3 +1,8 @@
|
||||||
|
2004-04-01 Artem B. Bityuckiy <abitytsky@softminecorp.com>
|
||||||
|
|
||||||
|
* libc/time/strptime.c: Add standard includes to avoid
|
||||||
|
warning messages at compilation time.
|
||||||
|
|
||||||
2004-04-01 Jeff Johnston <jjohnstn@redhat.com>
|
2004-04-01 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
* libc/stdio/vfscanf.c (__svfscanf_r): Add locking/unlocking
|
* libc/stdio/vfscanf.c (__svfscanf_r): Add locking/unlocking
|
||||||
|
|
|
@ -33,6 +33,9 @@
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <ctype.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
static const char *abb_weekdays[] = {
|
static const char *abb_weekdays[] = {
|
||||||
"Sun",
|
"Sun",
|
||||||
|
|
Loading…
Reference in New Issue