blob: 5baeed88c2faead7dcaba83f21d672f0ffa0b034 (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "libsimple.h"
#ifndef TEST
char *
libsimple_enstrdup(int status, const char *s) /* TODO test (libsimple_estrdup) */
{
char *ret = strdup(s);
if (!ret)
enprintf(status, "strdup:");
return ret;
}
#else
#include "test.h"
int
main(void)
{
return 0;
}
#endif
|