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

int rename(const char *old, const char *new) {
  (void)old;
  (void)new;
  assert(0); // TODO: Implement
  return 0;
}