diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2006-06-08 10:27:28 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-06-08 10:27:28 -0700 |
commit | 9fa73721f0c3df73e508da909a5665f47a54cb57 (patch) | |
tree | b6bed73e8f52268a871dbb6b43c399589e5019ec /os | |
parent | c405659626477f2009603d8c0e381b8b62277bb6 (diff) |
fix up EnableDisableExtension() and EnableDisableExtensionError() prototypes
Diffstat (limited to 'os')
-rw-r--r-- | os/utils.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/os/utils.c b/os/utils.c index 8655c3e49..43c6365a4 100644 --- a/os/utils.c +++ b/os/utils.c @@ -72,6 +72,7 @@ OR PERFORMANCE OF THIS SOFTWARE. #include "input.h" #include "dixfont.h" #include "osdep.h" +#include "extension.h" #ifdef X_POSIX_C_SOURCE #define _POSIX_C_SOURCE X_POSIX_C_SOURCE #include <signal.h> @@ -287,10 +288,6 @@ int userdefinedfontpath = 0; char *dev_tty_from_init = NULL; /* since we need to parse it anyway */ -/* Extension enable/disable in miinitext.c */ -extern Bool EnableDisableExtension(char *name, Bool enable); -extern void EnableDisableExtensionError(char *name, Bool enable); - OsSigHandlerPtr OsSignal(sig, handler) int sig; |