Skip to content

Commit a3d9b45

Browse files
authored
Merge pull request stm32duino#253 from fpistm/stdarg
Update wiring_private.h to include stdarg.h
2 parents 10736e4 + bf2933c commit a3d9b45

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

cores/arduino/wiring_private.h

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
/*
2-
Copyright (c) 2011 Arduino. All right reserved.
2+
wiring_private.h - Internal header file.
3+
Part of Arduino - http://www.arduino.cc/
4+
5+
Copyright (c) 2005-2006 David A. Mellis
36
47
This library is free software; you can redistribute it and/or
58
modify it under the terms of the GNU Lesser General Public
@@ -8,15 +11,19 @@
811
912
This library is distributed in the hope that it will be useful,
1013
but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12-
See the GNU Lesser General Public License for more details.
14+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15+
Lesser General Public License for more details.
1316
14-
You should have received a copy of the GNU Lesser General Public
15-
License along with this library; if not, write to the Free Software
16-
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17+
You should have received a copy of the GNU Lesser General
18+
Public License along with this library; if not, write to the
19+
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
20+
Boston, MA 02111-1307 USA
1721
*/
1822

1923
#ifndef WiringPrivate_h
2024
#define WiringPrivate_h
2125

26+
#include <stdio.h>
27+
#include <stdarg.h>
28+
2229
#endif

0 commit comments

Comments
 (0)