glibc/string/tst-strfry.c
Ulrich Drepper 806bc96abb * stdlib/random_r.c (__initstate_r): Don't use non-existing state.
* string/tst-strfry.c: New file.
	* string/Makefile (tests): Add tst-strfry.
2005-04-12 15:29:07 +00:00

16 lines
197 B
C

#include <stdio.h>
#include <string.h>
static int
do_test (void)
{
char str[] = "this is a test";
strfry (str);
return 0;
}
#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"