[clang] FatalErrorHandler.cpp - add explicit <stdio.h> include

Required for fprintf/stderr usage in the error handler, noticed while trying to remove the <string> dependency described in D111049
This commit is contained in:
Simon Pilgrim 2021-10-05 16:29:33 +01:00
parent cc697fc292
commit 9503ad3b53
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@
#include "clang-c/FatalErrorHandler.h"
#include "llvm/Support/ErrorHandling.h"
#include <stdio.h>
#include <stdlib.h>
static void aborting_fatal_error_handler(void *, const char *reason,