Example of an "extern" declaration to reuse a global variable defined in one file in another file.

Dependencies:   mbed

myWait.h

Committer:
bjo3rn
Date:
2015-09-23
Revision:
0:bc708d703171

File content as of revision 0:bc708d703171:

#ifndef MYWAIT_H
#define MYWAIT_H

//declare a custom wait function
void myWait(float t);

#endif