sandbox: remove linux/types.h dependency in setjmp.h
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Sun, 2 Mar 2025 14:21:17 +0000 (15:21 +0100)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Mon, 10 Mar 2025 06:41:11 +0000 (07:41 +0100)
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>
arch/sandbox/include/asm/setjmp.h

index 001c7ea..47dc893 100644 (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];