diff options
Diffstat (limited to 'v4.0/src/CMD/RESTORE/DIRECT.H')
| -rw-r--r-- | v4.0/src/CMD/RESTORE/DIRECT.H | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/v4.0/src/CMD/RESTORE/DIRECT.H b/v4.0/src/CMD/RESTORE/DIRECT.H new file mode 100644 index 0000000..aba9076 --- /dev/null +++ b/v4.0/src/CMD/RESTORE/DIRECT.H | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | /* | ||
| 2 | * direct.h | ||
| 3 | * | ||
| 4 | * This include file contains the function declarations for the library | ||
| 5 | * functions related to directory handling and creation. | ||
| 6 | * | ||
| 7 | * Copyright (C) 1988 Microsoft Corporation | ||
| 8 | * | ||
| 9 | */ | ||
| 10 | |||
| 11 | /* function declarations for those who want strong type checking | ||
| 12 | * on arguments to library function calls | ||
| 13 | */ | ||
| 14 | |||
| 15 | #ifdef LINT_ARGS /* arg. checking enabled */ | ||
| 16 | |||
| 17 | int chdir(char *); | ||
| 18 | char *getcwd(char *, int); | ||
| 19 | int mkdir(char *); | ||
| 20 | int rmdir(char *); | ||
| 21 | |||
| 22 | #else | ||
| 23 | |||
| 24 | extern char *getcwd(); | ||
| 25 | |||
| 26 | #endif /* LINT_ARGS */ | ||