mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 01:54:22 +00:00
chore(libc): clean up includes in lib/libc/printf.c
stddef.h is needed for the definition of size_t stdio.h is needed for the declaration of putchar Signed-off-by: Jorge Troncoso <jatron@google.com> Change-Id: I72dac843dbbfc440cff0f9e9d13669b78a812abc
This commit is contained in:
parent
58aebb6a53
commit
c5862af72d
1 changed files with 2 additions and 0 deletions
|
@ -7,7 +7,9 @@
|
|||
#include <assert.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#define get_num_va_args(_args, _lcount) \
|
||||
(((_lcount) > 1) ? va_arg(_args, long long int) : \
|
||||
|
|
Loading…
Add table
Reference in a new issue