sandbox: remove linux/types.h dependency in setjmp.h

ulong is defined in linux/types.h use unsigned long instead.

Reviewed-by: Jerome Forissier <jerome.forissier@linaro.org>
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
This commit is contained in:
Heinrich Schuchardt
2025-03-10 07:41:11 +01:00
parent 79aec250c2
commit e9b3810c67
+1 -1
View File
@@ -19,7 +19,7 @@ struct jmp_buf_data {
* We don't need to worry about 16-byte alignment, since this does not
* run on Windows.
*/
ulong data[128];
unsigned long data[128];
};
typedef struct jmp_buf_data jmp_buf[1];