Mercurial > hg > xemacs-beta
comparison lib-src/make-path.c @ 207:e45d5e7c476e r20-4b2
Import from CVS: tag r20-4b2
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:03:52 +0200 |
parents | 2d532a89d707 |
children | 74fd4e045ea6 |
comparison
equal
deleted
inserted
replaced
206:d3e9274cbc4e | 207:e45d5e7c476e |
---|---|
24 intermediate directories if they don't exist. This is just like | 24 intermediate directories if they don't exist. This is just like |
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 | |
30 #include <../src/config.h> | |
31 #endif | |
32 | |
29 #include <sys/types.h> | 33 #include <sys/types.h> |
30 #include <sys/stat.h> | 34 #include <sys/stat.h> |
31 #include <stdio.h> | 35 #include <stdio.h> |
32 #include <errno.h> | 36 #include <errno.h> |
33 | |
34 #ifdef emacs | |
35 #include <../src/config.h> | |
36 #endif | |
37 | 37 |
38 extern int errno; | 38 extern int errno; |
39 | 39 |
40 char *prog_name; | 40 char *prog_name; |
41 | 41 |