mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 07:20:10 +01:00
util: fix error about missing include
When building with linux_glibc_x86_64 in AOSP, this is
observed.
src/util/u_debug_stack.h:66:4: error: unknown type name 'uint64_t'
66 | uint64_t start_ip;
| ^
Adding <stdint.h> fixes it.
Reviewed-by: Yiwei Zhang <zzyiwei@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38644>
This commit is contained in:
parent
5af6af9644
commit
1997987b58
1 changed files with 1 additions and 0 deletions
|
|
@ -29,6 +29,7 @@
|
|||
#define U_DEBUG_STACK_H_
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "util/detect_os.h"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue