[svn-r13435] Changed prototype of HDremove_all function to use const char * instead of char *

This function is only used on VMS

Platforms tested:
	kagiso, VMS is still going.
This commit is contained in:
Elena Pourmal 2007-02-28 17:15:27 -05:00
parent 78e348bf9c
commit e43364f036

View File

@ -742,7 +742,7 @@ H5_DLL int HDrand(void);
#define HDrealloc(M,Z) realloc(M,Z)
#ifdef H5_VMS
#define HDremove(S) HDremove_all(S)
int HDremove_all(char * fname);
int HDremove_all(const char * fname);
#else
#define HDremove(S) remove(S)
#endif /*H5_VMS*/