mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
nasmlib: fix MacOS classic catsep definition
Correct the definition for MacOS classic "catsep" in nasm_catfile(). Also put in a stern comment that this function doesn't handle filenames with path components. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
11a07a7319
commit
d00d8c6ac3
@ -55,7 +55,7 @@
|
||||
#elif defined(Macintosh) /* MacOS classic? */
|
||||
# define separators ":"
|
||||
# define curdir ":"
|
||||
# define catsep ":"
|
||||
# define catsep ':'
|
||||
# define cleandirend ":"
|
||||
# define leaveonclean 0
|
||||
# define leave_leading 1
|
||||
@ -137,7 +137,11 @@ char *nasm_dirname(const char *path)
|
||||
return nasm_strndup(path, p-path);
|
||||
}
|
||||
|
||||
/* Concatenate a directory path and a filename */
|
||||
/*
|
||||
* Concatenate a directory path and a filename. Note that this function
|
||||
* currently does NOT handle the case where file itself contains
|
||||
* directory components (except on Unix platforms, because it is trivial.)
|
||||
*/
|
||||
char *nasm_catfile(const char *dir, const char *file)
|
||||
{
|
||||
#ifndef catsep
|
||||
|
Loading…
x
Reference in New Issue
Block a user