repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tools/llvm: Do not build with symbols
[minix3.git]
/
external
/
bsd
/
mdocml
/
dist
/
test-strptime.c
blob
976e9c8066a33086824b071c2de20728b047a1af
1
#if defined(__linux__) || defined(__MINT__)
2
# define _GNU_SOURCE
/* strptime(), getsubopt() */
3
#endif
4
5
#include <time.h>
6
7
int
8
main
(
int
argc
,
char
**
argv
)
9
{
10
struct
tm tm
;
11
strptime
(*
argv
,
"%D"
, &
tm
);
12
return
0
;
13
}