source:
CIVL/mods/dev.civl.abc/examples/prune/structs1.c
| Last change on this file was aad342c, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 232 bytes | |
| Rev | Line | |
|---|---|---|
| [aad342c] | 1 | typedef int time_t; |
| 2 | struct tm; | |
| 3 | char *asctime(const struct tm *timeptr); | |
| 4 | struct tm *gmtime(const time_t *timer); | |
| 5 | struct tm *localtime(const time_t *timer); | |
| 6 | struct tm { int x; }; | |
| 7 | ||
| 8 | int main() { | |
| 9 | asctime((struct tm *)0); | |
| 10 | return 0; | |
| 11 | } |
Note:
See TracBrowser
for help on using the repository browser.
