Skip to content
Snippets Groups Projects
Commit 545c960d authored by Raymond Toy's avatar Raymond Toy
Browse files

Merge branch 'issue-107-use-uint8_t' into 'master'

Fix #107: Use uint8_t instead of u_int8_t.

Closes #107

See merge request cmucl/cmucl!76
parents 8e4a873c 6dc68de2
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,8 @@
*/
#ifndef __X86_ARCH_H
#include <stdint.h>
extern int arch_support_sse2(void);
extern boolean os_support_sse2(void);
......@@ -25,6 +27,6 @@ extern boolean os_support_sse2(void);
* Just use the SSE size for both x87 and sse2 since the SSE size is
* enough for either. Make sure it's on a 16-byte boundary.
*/
#define FPU_STATE(name) u_int8_t name[SSE_STATE_SIZE] __attribute__((aligned(16)))
#define FPU_STATE(name) uint8_t name[SSE_STATE_SIZE] __attribute__((aligned(16)))
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment