From a7bed6c488780e109b747722fc332798ef5235b4 Mon Sep 17 00:00:00 2001 From: kai Date: Thu, 28 Feb 2013 07:58:28 +0100 Subject: [PATCH] Fix prototypes from DMD2. The prototypes for obj_includelib and obj_startaddress are DMD-specific. Update them to match DMD 2.061. --- dmd2/attrib.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dmd2/attrib.c b/dmd2/attrib.c index be830812..6783a199 100644 --- a/dmd2/attrib.c +++ b/dmd2/attrib.c @@ -35,10 +35,9 @@ #endif -extern void obj_includelib(const char *name); - #if IN_DMD -bool obj_startaddress(Symbol *s); +extern bool obj_includelib(const char *name); +void obj_startaddress(Symbol *s); #endif