#include <assert.h>
#include <stdio.h>

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