make/test_mkstemp.c@36c0fb2b60b2
make/test_mkstemp.c
Sun, 28 Dec 2025 17:31:20 +0100
- author
- Mike Becker <universe@uap-core.de>
- date
- Sun, 28 Dec 2025 17:31:20 +0100
- changeset 1675
- 36c0fb2b60b2
- parent 1661
-
a389bf17eaaa
- permissions
- -rw-r--r--
overhaul all attributes
#include <stdlib.h>
static void test_mkstemp() {
char tpl[] = "/tmp/testXXXXXX";
int fd = mkstemp(tpl);
// never called, no need to close fd
}
int main() {
return 0;
}