u.h: remove volatile in NativeTypes.p

This commit is contained in:
Giacomo Tesio 2019-11-13 18:27:09 +01:00
parent aa13cd129f
commit 49eb11173b
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ typedef union NativeTypes
volatile unsigned int ui;
volatile long l;
volatile unsigned long ul;
volatile void* p;
void* p;
} NativeTypes;
extern volatile NativeTypes* _sysargs;
# include "syscalls.h"