summaryrefslogtreecommitdiff
path: root/lib/progreloc.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2004-08-08 16:53:10 +0000
committerBruno Haible <bruno@clisp.org>2004-08-08 16:53:10 +0000
commite0576a6aeae094c5fc5a95fae6bae82eabdce5bb (patch)
treeec9bf48c0c0a16f2b96760d6d68253b3e22776ae /lib/progreloc.c
parent6681de9595280edf7930dbc928ed7c59c146f5c1 (diff)
downloadgnulib-e0576a6aeae094c5fc5a95fae6bae82eabdce5bb.tar.gz
Rename FILESYSTEM_PREFIX_LEN.
Diffstat (limited to 'lib/progreloc.c')
-rw-r--r--lib/progreloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/progreloc.c b/lib/progreloc.c
index 0f87c1c92c..f9bf5b2e70 100644
--- a/lib/progreloc.c
+++ b/lib/progreloc.c
@@ -1,5 +1,5 @@
/* Provide relocatable programs.
- Copyright (C) 2003 Free Software Foundation, Inc.
+ Copyright (C) 2003-2004 Free Software Foundation, Inc.
Written by Bruno Haible <bruno@clisp.org>, 2003.
This program is free software; you can redistribute it and/or modify it
@@ -67,12 +67,12 @@
&& (P)[1] == ':')
# define IS_PATH_WITH_DIR(P) \
(strchr (P, '/') != NULL || strchr (P, '\\') != NULL || HAS_DEVICE (P))
-# define FILESYSTEM_PREFIX_LEN(P) (HAS_DEVICE (P) ? 2 : 0)
+# define FILE_SYSTEM_PREFIX_LEN(P) (HAS_DEVICE (P) ? 2 : 0)
#else
/* Unix */
# define ISSLASH(C) ((C) == '/')
# define IS_PATH_WITH_DIR(P) (strchr (P, '/') != NULL)
-# define FILESYSTEM_PREFIX_LEN(P) 0
+# define FILE_SYSTEM_PREFIX_LEN(P) 0
#endif
#undef set_program_name