From 61946d674c3fcf98479d167d04dda84991a82128 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 28 Apr 1996 23:37:04 +0000 Subject: [PATCH] (DIRECTORY_SEP, IS_DIRECTORY_SEP): Definitions copied from lisp.h. --- lib-src/movemail.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib-src/movemail.c b/lib-src/movemail.c index 295b006911b..3739e01371d 100644 --- a/lib-src/movemail.c +++ b/lib-src/movemail.c @@ -70,6 +70,13 @@ Boston, MA 02111-1307, USA. */ #undef access #endif /* MSDOS */ +#ifndef DIRECTORY_SEP +#define DIRECTORY_SEP '/' +#endif +#ifndef IS_DIRECTORY_SEP +#define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP) +#endif + #ifdef WINDOWSNT #undef access #undef unlink -- 2.39.2