forked from OSchip/llvm-project
Fix filename in header and use C++ version of the C header files.
llvm-svn: 219192
This commit is contained in:
parent
e025321d36
commit
abfe07e9fc
|
@ -1,4 +1,4 @@
|
|||
//===-- X86DisassemblerDecoder.c - Disassembler decoder -------------------===//
|
||||
//===-- X86DisassemblerDecoder.cpp - Disassembler decoder -----------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
|
@ -13,10 +13,10 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include <stdarg.h> /* for va_*() */
|
||||
#include <stdio.h> /* for vsnprintf() */
|
||||
#include <stdlib.h> /* for exit() */
|
||||
#include <string.h> /* for memset() */
|
||||
#include <cstdarg> /* for va_*() */
|
||||
#include <cstdio> /* for vsnprintf() */
|
||||
#include <cstdlib> /* for exit() */
|
||||
#include <cstring> /* for memset() */
|
||||
|
||||
#include "X86DisassemblerDecoder.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue