From: Kevin O'Connor Date: Thu, 19 Nov 2015 20:29:39 +0000 (-0500) Subject: util.h: Minor - HaveRunPost is in misc.c not resume.c X-Git-Tag: rel-1.10.0~161 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=eb59924776dd2f838ec36fee51b5376fa7e405d3;p=seabios.git util.h: Minor - HaveRunPost is in misc.c not resume.c Signed-off-by: Kevin O'Connor --- diff --git a/src/util.h b/src/util.h index cba3359..7fcd6dc 100644 --- a/src/util.h +++ b/src/util.h @@ -183,6 +183,7 @@ void handle_15c2(struct bregs *regs); void process_key(u8 key); // misc.c +extern int HaveRunPost; extern struct bios_config_table_s BIOS_CONFIG_TABLE __aligned(1); extern struct floppy_dbt_s diskette_param_table __aligned(1); extern u8 BiosChecksum; @@ -222,9 +223,6 @@ void prepareboot(void); void startBoot(void); void reloc_preinit(void *f, void *arg); -// resume.c -extern int HaveRunPost; - // serial.c void serial_setup(void); void lpt_setup(void);