10 lines
167 B
C
Executable file
10 lines
167 B
C
Executable file
/* Creates an ordinary empty file. */
|
|
|
|
#include "tests/lib.h"
|
|
#include "tests/main.h"
|
|
|
|
void
|
|
test_main (void)
|
|
{
|
|
CHECK (create ("quux.dat", 0), "create quux.dat");
|
|
}
|