Removed unnecessary extern.

svn-id: r29440
This commit is contained in:
Johannes Schickel 2007-11-06 22:34:55 +00:00
parent 9038ee9115
commit 377ed4b1b4

View File

@ -27,8 +27,9 @@
namespace Graphics {
extern void drawLine(int x0, int y0, int x1, int y1, int color, void (*plotProc)(int, int, int, void *), void *data);
void drawLine(int x0, int y0, int x1, int y1, int color, void (*plotProc)(int, int, int, void *), void *data);
} // End of namespace Graphics
#endif