diff options
author | Jonathan Gray <[email protected]> | 2018-11-01 15:07:32 +1100 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2018-11-01 10:27:26 +0000 |
commit | ae8e81b0e300e9ad5c3635378cc0467e8d50f239 (patch) | |
tree | ab61da152ef219db337458250d0bd57ef7d2a977 /src/intel | |
parent | 68dc591af16ebb36814e4c187e4998948103c99c (diff) |
intel/tools: include stdarg.h in error2aub
Include stdarg.h in error2aub.c otherwise it fails to build on
OpenBSD due to not finding definitions for va_list va_start va_end.
Signed-off-by: Jonathan Gray <[email protected]>
Cc: [email protected]
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/tools/error2aub.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/tools/error2aub.c b/src/intel/tools/error2aub.c index 8a23d5ef1e7..b6e056cbcde 100644 --- a/src/intel/tools/error2aub.c +++ b/src/intel/tools/error2aub.c @@ -29,6 +29,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <stdarg.h> #include <zlib.h> #include "aub_write.h" |