#define free PAL_free
#define mkstemp PAL_mkstemp
#define rename PAL_rename
-#define unlink PAL_unlink
#define _strdup PAL__strdup
#define _getcwd PAL__getcwd
#define _open PAL__open
/*++
-PAL_unlink
-
-Wrapper function for unlink.
-
-Input parameters:
-
-szPath = a symbolic link or a hard link to a file
-
-Return value:
- Returns 0 on success and -1 on failure
---*/
-int
-__cdecl
-PAL_unlink(const char *szPath)
-{
- return unlink(szPath);
-}
-
-
-/*++
InternalDeleteFile
Wrapper that does the same thing as unlink, except that
int __cdecl PAL_mkstemp(char *szNameTemplate);
/*++
-PAL_unlink
-
-Calls unlink.
-
-Input parameters:
-
-szPath = a symbolic link or a hard link to a file
-
-Return value:
- Returns 0 on success and -1 on failure
---*/
-int __cdecl PAL_unlink(const char *szPath);
-
-/*++
PAL_rename
Calls rename