change header guards to have CAPSTONE_ as prefix. suggested by Markus Elfring

This commit is contained in:
Nguyen Anh Quynh 2014-01-19 23:51:34 +08:00
parent 5d1244d194
commit 747c4eff69
5 changed files with 10 additions and 10 deletions

View File

@ -1,5 +1,5 @@
#ifndef CS_ARM_H
#define CS_ARM_H
#ifndef CAPSTONE_ARM_H
#define CAPSTONE_ARM_H
/* Capstone Disassembler Engine */
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */

View File

@ -1,5 +1,5 @@
#ifndef CS_ARM64_H
#define CS_ARM64_H
#ifndef CAPSTONE_ARM64_H
#define CAPSTONE_ARM64_H
/* Capstone Disassembler Engine */
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */

View File

@ -1,5 +1,5 @@
#ifndef CS_MIPS_H
#define CS_MIPS_H
#ifndef CAPSTONE_MIPS_H
#define CAPSTONE_MIPS_H
/* Capstone Disassembler Engine */
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */

View File

@ -1,5 +1,5 @@
#ifndef CS_PPC_H
#define CS_PPC_H
#ifndef CAPSTONE_PPC_H
#define CAPSTONE_PPC_H
/* Capstone Disassembler Engine */
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */

View File

@ -1,5 +1,5 @@
#ifndef CS_X86_H
#define CS_X86_H
#ifndef CAPSTONE_X86_H
#define CAPSTONE_X86_H
/* Capstone Disassembler Engine */
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */