blob: bc15fae1109eb4943f58680ac4ebb0bc0279ea56 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* liblitmus platform dependent includes */
#ifndef ASM_H
#define ASM_H
#if defined(__i386__) || defined(__x86_64__)
#include "asm_x86.h"
#endif
#ifdef __sparc__
#include "asm_sparc.h"
#endif
#endif
|