summaryrefslogtreecommitdiff
path: root/v4.0/src/CMD/RESTORE/DIRECT.H
diff options
context:
space:
mode:
authorGravatar Mark Zbikowski2024-04-25 21:24:10 +0100
committerGravatar Microsoft Open Source2024-04-25 22:32:27 +0000
commit2d04cacc5322951f187bb17e017c12920ac8ebe2 (patch)
tree80ee017efa878dfd5344b44249e6a241f2a7f6e2 /v4.0/src/CMD/RESTORE/DIRECT.H
parentMerge pull request #430 from jpbaltazar/typoptbr (diff)
downloadms-dos-main.tar.gz
ms-dos-main.tar.xz
ms-dos-main.zip
MZ is back!HEADmain
Diffstat (limited to 'v4.0/src/CMD/RESTORE/DIRECT.H')
-rw-r--r--v4.0/src/CMD/RESTORE/DIRECT.H26
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
17int chdir(char *);
18char *getcwd(char *, int);
19int mkdir(char *);
20int rmdir(char *);
21
22#else
23
24extern char *getcwd();
25
26#endif /* LINT_ARGS */