Mercurial > hg > xemacs-beta
comparison lib-src/make-path.c @ 398:74fd4e045ea6 r21-2-29
Import from CVS: tag r21-2-29
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:13:30 +0200 |
parents | e45d5e7c476e |
children | 697ef44129c6 |
comparison
equal
deleted
inserted
replaced
397:f4aeb21a5bad | 398:74fd4e045ea6 |
---|---|
25 the `mkdir -p' command on most systems; unfortunately, the mkdir | 25 the `mkdir -p' command on most systems; unfortunately, the mkdir |
26 command on some of the purer BSD systems (like Mt. Xinu) don't have | 26 command on some of the purer BSD systems (like Mt. Xinu) don't have |
27 that option. */ | 27 that option. */ |
28 | 28 |
29 #ifdef emacs | 29 #ifdef emacs |
30 #include <../src/config.h> | 30 #include <config.h> |
31 #endif | 31 #endif |
32 | 32 |
33 #include <sys/types.h> | 33 #include <sys/types.h> |
34 #include <sys/stat.h> | 34 #include <sys/stat.h> |
35 #include <stdio.h> | 35 #include <stdio.h> |
36 #include <errno.h> | 36 #include <errno.h> |
37 | |
38 extern int errno; | |
39 | 37 |
40 char *prog_name; | 38 char *prog_name; |
41 | 39 |
42 static int touchy_mkdir (char *path) | 40 static int touchy_mkdir (char *path) |
43 { | 41 { |