blob: 484e97f70b924cda72753a4c7c6b47634f8273fe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- libinstaller/syslinux.h.orig 2009-10-06 02:06:06.000000000 +0400
+++ libinstaller/syslinux.h 2009-12-04 10:09:04.000000000 +0300
@@ -17,15 +17,15 @@
#include "advconst.h"
/* The standard boot sector and ldlinux image */
-extern unsigned char syslinux_bootsect[];
+extern unsigned char *syslinux_bootsect;
extern unsigned int syslinux_bootsect_len;
extern int syslinux_bootsect_mtime;
-extern unsigned char syslinux_ldlinux[];
+extern unsigned char *syslinux_ldlinux;
extern unsigned int syslinux_ldlinux_len;
extern int syslinux_ldlinux_mtime;
-extern unsigned char syslinux_mbr[];
+extern unsigned char *syslinux_mbr;
extern unsigned int syslinux_mbr_len;
extern int syslinux_mbr_mtime;
|