Renamed C++ keyword "new" to "qnew" in function prototypes

This commit is contained in:
bernd 2011-07-24 22:25:35 +02:00
parent 31efd30e85
commit 34b0ba6e58
1 changed files with 2 additions and 2 deletions

View File

@ -16,8 +16,8 @@ extern volatile uint32_t _timectr;
void work_queue(void);
void delayms_queue(uint32_t delayms);
void delayms_power(uint32_t delayms);
int push_queue(void (*new)(void));
int magic(void *new);
int push_queue(void (*qnew)(void));
int magic(void *qnew);
#define incTimer(void) do{_timectr++;}while(0);