summaryrefslogtreecommitdiff
path: root/core/include/fs.h
diff options
context:
space:
mode:
authorGene Cumm <gene.cumm@gmail.com>2010-06-26 22:51:39 -0400
committerH. Peter Anvin <hpa@zytor.com>2010-06-26 20:52:58 -0700
commit03791432c7207da9eb6c898bf15f003ab92ff10e (patch)
treedf8633fd7d4d2ac1014e9f17caf60d4a6b68019b /core/include/fs.h
parent2d3c94d753dc27040c4ea93550429e231a205181 (diff)
downloadsyslinux-03791432c7207da9eb6c898bf15f003ab92ff10e.tar.gz
PM getcwd(); Fix COM32 getcwd
Implement getcwd() in the core; Fix COM32 getcwd() to use the new function. This resolves the previous comment about COM32 getcwd() not working by not using INT 22h AX=001Fh. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'core/include/fs.h')
-rw-r--r--core/include/fs.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/include/fs.h b/core/include/fs.h
index bb629c91..a01f9984 100644
--- a/core/include/fs.h
+++ b/core/include/fs.h
@@ -202,6 +202,9 @@ DIR *opendir(const char *pathname);
struct dirent *readdir(DIR *dir);
int closedir(DIR *dir);
+/* getcwd.c */
+char *getcwd(char *buf, size_t size);
+
/*
* Generic functions that filesystem drivers may choose to use
*/