diff options
Diffstat (limited to 'Xext/dpmsstubs.c')
-rw-r--r-- | Xext/dpmsstubs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Xext/dpmsstubs.c b/Xext/dpmsstubs.c index 6f635f42b..ac1ee352a 100644 --- a/Xext/dpmsstubs.c +++ b/Xext/dpmsstubs.c @@ -26,23 +26,23 @@ dealings in this Software without prior written authorization from Digital Equipment Corporation. ******************************************************************/ +/* $XFree86: xc/programs/Xserver/Xext/dpmsstubs.c,v 3.4 2001/01/17 22:13:15 dawes Exp $ */ typedef int Bool; #define FALSE 0 -Bool DPMSSupported() +Bool DPMSSupported(void) { return FALSE; } -int DPSMGet(level) - int *level; +int DPSMGet(int *level) { return -1; } -void DPMSSet(level) +void DPMSSet(int level) { } |