10 lines
184 B
C
Executable file
10 lines
184 B
C
Executable file
/* Tries to create a file with the empty string as its name. */
|
|
|
|
#include "tests/lib.h"
|
|
#include "tests/main.h"
|
|
|
|
void
|
|
test_main (void)
|
|
{
|
|
msg ("create(\"\"): %d", create ("", 0));
|
|
}
|