diff options
author | Johannes Schickel | 2007-11-06 22:34:55 +0000 |
---|---|---|
committer | Johannes Schickel | 2007-11-06 22:34:55 +0000 |
commit | 377ed4b1b4fc4817eb23c0ae31768b37ca3455d2 (patch) | |
tree | ca32db4d5e1e43e93942ca70258dac6af8debf0d | |
parent | 9038ee91154c1a9377e596c1c0a44ccbc111e7a1 (diff) | |
download | scummvm-rg350-377ed4b1b4fc4817eb23c0ae31768b37ca3455d2.tar.gz scummvm-rg350-377ed4b1b4fc4817eb23c0ae31768b37ca3455d2.tar.bz2 scummvm-rg350-377ed4b1b4fc4817eb23c0ae31768b37ca3455d2.zip |
Removed unnecessary extern.
svn-id: r29440
-rw-r--r-- | graphics/primitives.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/primitives.h b/graphics/primitives.h index e062efed37..2bc44d6644 100644 --- a/graphics/primitives.h +++ b/graphics/primitives.h @@ -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 + |