source: buchla-68k/libcio/rename.c

Last change on this file was 7ecfb7b, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Unused variables and parameters.

  • Property mode set to 100644
File size: 372 bytes
RevLine 
[f40a309]1/*
2 =============================================================================
3 rename.c -- rename a file
4 Version 2 -- 1987-06-29 -- D.N. Lynx Crowe
5 =============================================================================
6*/
7
[b28a12e]8#include "ram.h"
[6262b5c]9
[7258c6a]10int16_t rename(int8_t *old, int8_t *new)
[f40a309]11{
[7ecfb7b]12 (void)old;
13 (void)new;
[f40a309]14
15 return(-1); /* return an error for now */
16}
Note: See TracBrowser for help on using the repository browser.