Commit 409cbf78 authored by Oitzu's avatar Oitzu

Fix Warning. ‘void* interruptHandler(void*)’ declared ‘static’ but never defined.

parent f4a6073b
......@@ -82,7 +82,7 @@ int piHiPri (const int pri)
}
static void *interruptHandler (void *arg)
void *interruptHandler (void *arg)
{
int myPin ;
......
......@@ -21,7 +21,7 @@ see <http://www.gnu.org/licenses/>
* fires.
*********************************************************************************
*/
static void *interruptHandler (void *arg);
void *interruptHandler (void *arg);
#ifdef __cplusplus
extern "C" {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment