summaryrefslogtreecommitdiff
path: root/userland/libc/stdio/tmpfile.c
blob: cee6e0ae10aa5dc4047c1c7351233e9fd0bfbb4b (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include <assert.h>

FILE *tmpfile(void) {
    // TODO
    printf("TODO: Implement tmpfile()\n");
    assert(0);
    return NULL;
}