__predict_false() isn't defined if we aren't netbsd, stub out.
This commit is contained in:
parent
462d090d0f
commit
18e81da746
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: buf.h,v 1.15 2009/01/17 13:29:37 dsl Exp $ */
|
/* $NetBSD: buf.h,v 1.16 2009/01/17 13:55:42 dsl Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
|
* Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
|
||||||
|
@ -88,6 +88,11 @@ typedef struct Buffer {
|
||||||
Byte *buffer; /* The buffer itself (zero terminated) */
|
Byte *buffer; /* The buffer itself (zero terminated) */
|
||||||
} Buffer;
|
} Buffer;
|
||||||
|
|
||||||
|
/* If we aren't on netbsd, __predict_false() might not be defined. */
|
||||||
|
#ifndef __predict_false
|
||||||
|
#define __predict_false(x) (x)
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Buf_AddByte adds a single byte to a buffer. */
|
/* Buf_AddByte adds a single byte to a buffer. */
|
||||||
#define Buf_AddByte(bp, byte) do { \
|
#define Buf_AddByte(bp, byte) do { \
|
||||||
int _count = ++(bp)->count; \
|
int _count = ++(bp)->count; \
|
||||||
|
|
Loading…
Reference in New Issue