Skip to content

Commit

Permalink
OpenBSD: add missing stdarg.h include
Browse files Browse the repository at this point in the history
Needed for variadic operations.

Fixes #231
  • Loading branch information
ThomasAdam committed Sep 23, 2020
1 parent 69df4ef commit ced8f10
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions libs/safemalloc.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#ifndef _SAFEMALLOC_H
#define _SAFEMALLOC_H

#include <stdarg.h>

void *fxmalloc(size_t);
void *fxcalloc(size_t, size_t);
void *fxrealloc(void *, size_t, size_t);
Expand Down

0 comments on commit ced8f10

Please sign in to comment.