Add <string.h>, <stdlib.h>, and <stdio.h> to clear undefined function
warnings after the removal of libcwrapper headers.
This commit is contained in:
parent
d6337c8324
commit
a2a5254675
|
@ -1,5 +1,14 @@
|
||||||
2006-02-11 Alan Coopersmith <alan.coopersmith@sun.com>
|
2006-02-11 Alan Coopersmith <alan.coopersmith@sun.com>
|
||||||
|
|
||||||
|
* Xext/xres.c:
|
||||||
|
* afb/afbline.c:
|
||||||
|
* fb/fbblt.c:
|
||||||
|
* hw/dmx/config/scanner.l:
|
||||||
|
Add <string.h>, <stdlib.h>, and <stdio.h> to clear undefined function
|
||||||
|
warnings after the removal of libcwrapper headers.
|
||||||
|
|
||||||
|
2006-02-11 Alan Coopersmith <alan.coopersmith@sun.com>
|
||||||
|
|
||||||
* cfb/cfbfillarc.c:
|
* cfb/cfbfillarc.c:
|
||||||
* cfb/cfbzerarc.c:
|
* cfb/cfbzerarc.c:
|
||||||
* hw/xfree86/xaa/xaaFillArc.c:
|
* hw/xfree86/xaa/xaaFillArc.c:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
Copyright (c) 2002 XFree86 Inc
|
Copyright (c) 2002 XFree86 Inc
|
||||||
*/
|
*/
|
||||||
/* $XFree86: xc/programs/Xserver/Xext/xres.c,v 1.7tsi Exp $ */
|
/* $XFree86: xc/programs/Xserver/Xext/xres.c,v 1.7tsi Exp $ */
|
||||||
/* $XdotOrg: xc/programs/Xserver/Xext/xres.c,v 1.4 2005/04/20 12:25:12 daniels Exp $ */
|
/* $XdotOrg: xserver/xorg/Xext/xres.c,v 1.7 2005/07/03 08:53:36 daniels Exp $ */
|
||||||
|
|
||||||
#define NEED_EVENTS
|
#define NEED_EVENTS
|
||||||
#define NEED_REPLIES
|
#define NEED_REPLIES
|
||||||
|
@ -10,6 +10,8 @@
|
||||||
#include <dix-config.h>
|
#include <dix-config.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <string.h>
|
||||||
#include <X11/X.h>
|
#include <X11/X.h>
|
||||||
#include <X11/Xproto.h>
|
#include <X11/Xproto.h>
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
|
|
|
@ -53,6 +53,7 @@ SOFTWARE.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <X11/X.h>
|
#include <X11/X.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "gcstruct.h"
|
#include "gcstruct.h"
|
||||||
#include "windowstr.h"
|
#include "windowstr.h"
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
#include <dix-config.h>
|
#include <dix-config.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
#include "fb.h"
|
#include "fb.h"
|
||||||
|
|
||||||
#define InitializeShifts(sx,dx,ls,rs) { \
|
#define InitializeShifts(sx,dx,ls,rs) { \
|
||||||
|
|
|
@ -40,6 +40,7 @@
|
||||||
#include "dmxparse.h"
|
#include "dmxparse.h"
|
||||||
#include "parser.h"
|
#include "parser.h"
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <stdlib.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
static int getdimension(int token, const char *text, int leng);
|
static int getdimension(int token, const char *text, int leng);
|
||||||
static int getstring(int token, const char *text, int leng);
|
static int getstring(int token, const char *text, int leng);
|
||||||
|
|
Loading…
Reference in New Issue