interim linux compile fixes for the in64 fixes (hah)

This commit is contained in:
Bill Currie 2007-04-04 08:27:49 +00:00 committed by Jeff Teunissen
parent d8b91afa4b
commit ac02c36aaf
3 changed files with 5 additions and 1 deletions

View File

@ -29,6 +29,8 @@
#ifndef __hash_h
#define __hash_h
#include <stdint.h>
/** \defgroup hash Hash tables
\ingroup utils
*/

View File

@ -36,6 +36,7 @@
//@{
#include <stdio.h>
#include <stdint.h>
#include <stdarg.h>
extern struct cvar_s *sys_nostdout;

View File

@ -48,6 +48,7 @@ static __attribute__ ((used)) const char rcsid[] =
#include <sys/time.h>
#endif
#include <time.h>
#include <stdint.h>
#include "QF/sizebuf.h"
@ -128,7 +129,7 @@ static byte msg_buffer[2][MAX_DATAGRAM];
rec.dbuffer.start - rec.dbuffer.end : \
rec.dbuffer.maxsize - rec.dbuffer.end)
#define HEADER ((size_t)(intptr_t) &((header_t *) 0)->data)
#define HEADER ((int) (intptr_t) &((header_t *) 0)->data)
static void
dbuffer_init (dbuffer_t *dbuffer, byte *buf, size_t size)