mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-07 14:28:50 +00:00
14 lines
268 B
C
14 lines
268 B
C
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
/*
|
||
|
* Copyright (C) 2001 MontaVista Software Inc.
|
||
|
* Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
|
||
|
*/
|
||
|
|
||
|
#ifndef _printf_h_
|
||
|
#define _printf_h_
|
||
|
|
||
|
#include <stdarg.h>
|
||
|
void printf(char *fmt, ...);
|
||
|
|
||
|
#endif /* _printf_h_ */
|