1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Support/reg*.h: Make headers include their dependencies

llvm-svn: 316696
This commit is contained in:
David Blaikie 2017-10-26 20:23:11 +00:00
parent b4f531a783
commit 903de82511
3 changed files with 7 additions and 0 deletions

View File

@ -40,6 +40,8 @@
#ifndef LLVM_SUPPORT_REGCCLASS_H
#define LLVM_SUPPORT_REGCCLASS_H
#include <stddef.h>
/* character-class table */
static struct cclass {
const char *name;

View File

@ -38,6 +38,8 @@
#ifndef LLVM_SUPPORT_REGCNAME_H
#define LLVM_SUPPORT_REGCNAME_H
#include <stddef.h>
/* character-name table */
static struct cname {
const char *name;

View File

@ -38,6 +38,9 @@
#ifndef LLVM_SUPPORT_REGEX2_H
#define LLVM_SUPPORT_REGEX2_H
#include "regutils.h"
#include <stddef.h>
/*
* internals of regex_t
*/