blob: 7dd65957954a2f28a6c2b62b5b7057c7bacccaa7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/* See LICENSE file for copyright and license details. */
#include "libsimple.h"
#ifndef TEST
extern char *argv0;
char *
libsimple_enstrndup(int status, const char *s, size_t n) /* TODO test */
{
void *ret = strndup(s, n);
if (!ret) {
fprintf(stderr, "%s: strndup: %s\n", argv0, strerror(errno));
exit(status);
}
return ret;
}
#else
#include "test.h"
int
main(void)
{
return 0;
}
#endif
|