Fix prototypes from DMD2.

The prototypes for obj_includelib and obj_startaddress are DMD-specific.
Update them to match DMD 2.061.
This commit is contained in:
kai
2013-02-28 07:58:28 +01:00
parent 5c6ba2ec3b
commit a7bed6c488

View File

@@ -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