]> pd.if.org Git - pdclib/blob - platform/example/functions/_PDCLIB/rename.c
PDCLib includes with quotes, not <>.
[pdclib] / platform / example / functions / _PDCLIB / rename.c
1 /* _PDCLIB_rename( const char *, const char * )
2
3    This file is part of the Public Domain C Library (PDCLib).
4    Permission is granted to use, modify, and / or redistribute at will.
5 */
6
7 #include <stdio.h>
8
9 #ifndef REGTEST
10 #include "_PDCLIB_glue.h"
11 #include <errno.h>
12
13 int _PDCLIB_rename( const char * old, const char * new )
14 {
15     errno = ENOTSUP;
16 }
17
18 #endif
19
20 #ifdef TEST
21 #include "_PDCLIB_test.h"
22
23 #include <stdlib.h>
24
25 int main( void )
26 {
27     return TEST_RESULTS;
28 }
29
30 #endif