2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
10 /*****************************************************************************
18 const char * pathname
)
21 Delete a file from disk.
24 pathname - Complete path to the file
27 0 on success and -1 on error. In case of an error, errno is set.
33 // Delete the file xyz in the current directory
42 ******************************************************************************/
44 return remove(pathname
);