source:
CIVL/mods/dev.civl.com/examples/xsbench/src/civl_extras.cvl@
cb4d4f4
| Last change on this file since cb4d4f4 was aad342c, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 361 bytes | |
| Line | |
|---|---|
| 1 | |
| 2 | #include <stdio.h> |
| 3 | |
| 4 | int fputs(const char * restrict s, |
| 5 | FILE * restrict stream) { |
| 6 | return 0; |
| 7 | } |
| 8 | |
| 9 | long atol(const char *nptr) { |
| 10 | $abstract long _atol(const char * ptr); |
| 11 | |
| 12 | return _atol(nptr); |
| 13 | } |
| 14 | |
| 15 | void qsort(void *base, size_t nmemb, size_t size, |
| 16 | int (*compar)(const void *, const void *)) { |
| 17 | } |
| 18 | |
| 19 | int strcasecmp(const char *, const char *) { |
| 20 | return 1; |
| 21 | } |
Note:
See TracBrowser
for help on using the repository browser.
