From: Richard M. Stallman Date: Sun, 28 Apr 1996 23:37:04 +0000 (+0000) Subject: (DIRECTORY_SEP, IS_DIRECTORY_SEP): Definitions copied from lisp.h. X-Git-Tag: emacs-19.34~756 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=61946d674c3fcf98479d167d04dda84991a82128;p=emacs.git (DIRECTORY_SEP, IS_DIRECTORY_SEP): Definitions copied from lisp.h. --- 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