Remove "[Add new features here]" for 2.27
[glibc.git] / string / tst-strfry.c
blobe4e9018c5b0d67c4a6109aa542c216eee88a452a
1 #include <stdio.h>
2 #include <string.h>
4 int
5 do_test (void)
7 char str[] = "this is a test";
9 strfry (str);
11 return 0;
14 #include <support/test-driver.c>