remove unnecessary 'extern' keyword from function prototypes in include/xcursor.h

next
Michael Stapelberg 2011-07-29 13:16:26 +02:00
parent 3721c598bd
commit 1b0d6ab202
1 changed files with 3 additions and 3 deletions

View File

@ -13,9 +13,9 @@ enum xcursor_cursor_t {
XCURSOR_CURSOR_MAX
};
extern void xcursor_load_cursors();
extern Cursor xcursor_get_cursor(enum xcursor_cursor_t c);
extern int xcursor_get_xcb_cursor(enum xcursor_cursor_t c);
void xcursor_load_cursors();
Cursor xcursor_get_cursor(enum xcursor_cursor_t c);
int xcursor_get_xcb_cursor(enum xcursor_cursor_t c);
/**
* Sets the cursor of the root window to the 'pointer' cursor.