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

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