Fixed unused argument warning

This commit is contained in:
Cristian Maglie 2015-05-29 20:47:56 +02:00
parent 64dd45c3ce
commit 6c763b7df3
1 changed files with 2 additions and 2 deletions

View File

@ -19,8 +19,8 @@
#include <Arduino.h>
//Declared weak in Arduino.h to allow user redefinitions.
int atexit(void (*func)()) { return 0; }
// Declared weak in Arduino.h to allow user redefinitions.
int atexit(void (* /*func*/ )()) { return 0; }
// Weak empty variant initialization function.
// May be redefined by variant files.