~ubuntu-branches/ubuntu/intrepid/xserver-xgl/intrepid

« back to all changes in this revision

Viewing changes to hw/xfree86/dummylib/xf86msgverb.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthew Garrett
  • Date: 2006-02-13 14:21:43 UTC
  • Revision ID: james.westby@ubuntu.com-20060213142143-mad6z9xzem7hzxz9
Tags: upstream-7.0.0
ImportĀ upstreamĀ versionĀ 7.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $XFree86: xc/programs/Xserver/hw/xfree86/dummylib/xf86msgverb.c,v 1.1 2000/02/13 03:06:42 dawes Exp $ */
 
2
 
 
3
#ifdef HAVE_XORG_CONFIG_H
 
4
#include <xorg-config.h>
 
5
#endif
 
6
 
 
7
#include <X11/X.h>
 
8
#include "os.h"
 
9
#include "xf86.h"
 
10
#include "xf86Priv.h"
 
11
 
 
12
/*
 
13
 * Utility functions required by libxf86_os. 
 
14
 */
 
15
 
 
16
void
 
17
xf86MsgVerb(MessageType type, int verb, const char *format, ...)
 
18
{
 
19
    va_list ap;
 
20
 
 
21
    va_start(ap, format);
 
22
    LogVWrite(verb, format, ap);
 
23
    va_end(ap);
 
24
}
 
25