diff options
author | Pierre-Alexandre Meyer <pierre@mouraf.org> | 2009-04-21 09:51:28 -0700 |
---|---|---|
committer | Pierre-Alexandre Meyer <pierre@mouraf.org> | 2009-04-21 09:51:28 -0700 |
commit | d1890409251949b80c2026557b9b12ca00d55144 (patch) | |
tree | 118b44c1f72cbebca45d162730c468a2a6a8640e /com32/gplinclude/disk | |
parent | 075c25456b7c6f33248e8bcbe7ede17cf5e82781 (diff) | |
download | syslinux-d1890409251949b80c2026557b9b12ca00d55144.tar.gz syslinux-d1890409251949b80c2026557b9b12ca00d55144.tar.xz syslinux-d1890409251949b80c2026557b9b12ca00d55144.zip |
gpllib: Move get_error from disk/util.c to disk/error.c
The get_error function is fairly big. It is worth creating
a new file for it.
Signed-off-by: Pierre-Alexandre Meyer <pierre@mouraf.org>
Diffstat (limited to 'com32/gplinclude/disk')
-rw-r--r-- | com32/gplinclude/disk/error.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/com32/gplinclude/disk/error.h b/com32/gplinclude/disk/error.h new file mode 100644 index 00000000..3a7614e9 --- /dev/null +++ b/com32/gplinclude/disk/error.h @@ -0,0 +1,4 @@ +#ifndef _ERROR_H_ +#define _ERROR_H_ +void get_error(const int, char**); +#endif /* _UTIL_H_ */ |