2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
5 C99 function remove() with optional Amiga<>Posix file name conversion.
12 /*****************************************************************************
20 const char * pathname)
23 Deletes a file or directory.
26 pathname - Complete path to the file or directory.
29 0 on success and -1 on error. In case of an error, errno is set.
42 Uses stdcio.library remove() function after path name conversion
44 ******************************************************************************/
45 int __posixc_remove(const char * pathname
)
47 return remove(__path_u2a(pathname
));
51 /*****************************************************************************
59 const char * pathname)
62 Delete a file from disk.
65 pathname - Complete path to the file
68 0 on success and -1 on error. In case of an error, errno is set.
74 // Delete the file xyz in the current directory
84 ******************************************************************************/