blob: 48952dc111631083485df70bff5ebda98f5acc3e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
* printf.h
*
* Created on: Sep 5, 2025
* Author: sowgro
*/
#ifndef INC_ACTIVITIES_PRINTF_H_
#define INC_ACTIVITIES_PRINTF_H_
int printf(const char *format, ...);
#endif /* INC_ACTIVITIES_PRINTF_H_ */
|