diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-21 17:41:29 +0100 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-21 17:41:29 +0100 |
commit | 3c6f5161b2903c1bf59bcc959301a7390c3c5c79 (patch) | |
tree | 87aaeaea67881739220cf7a89d7b9a1a668e20f2 /src/tools/irm/irm.c | |
parent | 02681c391cbc1cc08f2dea5d8499f301d9321147 (diff) | |
download | ouroboros-3c6f5161b2903c1bf59bcc959301a7390c3c5c79.tar.gz ouroboros-3c6f5161b2903c1bf59bcc959301a7390c3c5c79.zip |
tools: Simple echo application
This adds a simple echo application written to show application how to
use the API. It also updates the dev.h header file with the insights
gained from performing this excercise.
Diffstat (limited to 'src/tools/irm/irm.c')
-rw-r--r-- | src/tools/irm/irm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tools/irm/irm.c b/src/tools/irm/irm.c index 426118d1..895d52c2 100644 --- a/src/tools/irm/irm.c +++ b/src/tools/irm/irm.c @@ -73,8 +73,7 @@ static int do_cmd(const char * argv0, return -1; } - -int main (int argc, char ** argv) { +int main(int argc, char ** argv) { if (argc < 2) { usage(); |