summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/tools.h
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2000-12-17 23:32:50 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2000-12-17 23:32:50 +0000
commite5b4ea994b4cf66d418494d33abd89300d291c6d (patch)
tree7d8c840ea0a27814b53fa0a94c0a0d3fa92ae5c6 /mdk-stage1/tools.h
parent2766c6bb69ced7c4f33ec9d8bda56ba5b66e2915 (diff)
downloaddrakx-e5b4ea994b4cf66d418494d33abd89300d291c6d.tar
drakx-e5b4ea994b4cf66d418494d33abd89300d291c6d.tar.gz
drakx-e5b4ea994b4cf66d418494d33abd89300d291c6d.tar.bz2
drakx-e5b4ea994b4cf66d418494d33abd89300d291c6d.tar.xz
drakx-e5b4ea994b4cf66d418494d33abd89300d291c6d.zip
automatic mode added (a.k.a get rid of redhat kickstart)
Diffstat (limited to 'mdk-stage1/tools.h')
-rw-r--r--mdk-stage1/tools.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/mdk-stage1/tools.h b/mdk-stage1/tools.h
index a21615891..7f34c8c5d 100644
--- a/mdk-stage1/tools.h
+++ b/mdk-stage1/tools.h
@@ -22,6 +22,7 @@
#ifndef _TOOLS_H_
#define _TOOLS_H_
+#include <stdlib.h>
void process_cmdline(void);
int get_param(int i);
@@ -31,5 +32,11 @@ int ramdisk_possible(void);
enum return_type load_ramdisk(void);
void * memdup(void *src, size_t size);
+struct param_elem
+{
+ char * name;
+ char * value;
+};
+
#endif