diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-12-21 10:30:39 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-12-21 10:30:39 +0000 |
commit | f2386f6a22c55842203278c5b1f9691c5ac5f8fd (patch) | |
tree | b7f318640fa8ff688925eab4fe544d41f3dd019a /demos/ARM7-LPC214x-G++ | |
parent | 25d2722b09c5ed808fbb5b09bafc94f253da2479 (diff) | |
download | ChibiOS-f2386f6a22c55842203278c5b1f9691c5ac5f8fd.tar.gz ChibiOS-f2386f6a22c55842203278c5b1f9691c5ac5f8fd.tar.bz2 ChibiOS-f2386f6a22c55842203278c5b1f9691c5ac5f8fd.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2515 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/ARM7-LPC214x-G++')
-rw-r--r-- | demos/ARM7-LPC214x-G++/main.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/demos/ARM7-LPC214x-G++/main.cpp b/demos/ARM7-LPC214x-G++/main.cpp index 8a9ca1c05..ca99c67ef 100644 --- a/demos/ARM7-LPC214x-G++/main.cpp +++ b/demos/ARM7-LPC214x-G++/main.cpp @@ -144,16 +144,13 @@ static void TimerHandler(eventid_t id) { /*
* Application entry point.
*/
-int main(int argc, char **argv) {
+int main(void) {
static const evhandler_t evhndl[] = {
TimerHandler
};
static EvTimer evt;
struct EventListener el0;
- (void)argc;
- (void)argv;
-
/*
* System initializations.
* - HAL initialization, this also initializes the configured device drivers
|