From: ol.sc Date: Tue, 13 Nov 2012 22:23:10 +0000 (+0000) Subject: Harmozined typing of static driver address. X-Git-Tag: V2.14~140 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1ebee7cbd385dd9d180223028fa953c0c0eff792;p=cc65 Harmozined typing of static driver address. git-svn-id: svn://svn.cc65.org/cc65/trunk@5934 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/include/joystick.h b/include/joystick.h index 063278124..2e6a3fefe 100644 --- a/include/joystick.h +++ b/include/joystick.h @@ -78,7 +78,7 @@ extern const unsigned char joy_masks[8]; extern const char joy_stddrv[]; /* The address of the static standard joystick driver for a platform */ -extern const char joy_static_stddrv[]; +extern const void joy_static_stddrv[]; diff --git a/include/mouse.h b/include/mouse.h index a085baf92..bfb0acad3 100644 --- a/include/mouse.h +++ b/include/mouse.h @@ -108,7 +108,7 @@ extern const struct mouse_callbacks mouse_def_callbacks; extern const char mouse_stddrv[]; /* The address of the static standard mouse driver for a platform */ -extern const char mouse_static_stddrv[]; +extern const void mouse_static_stddrv[];