- remove build warning from keep_alive

- remove surplus linefeeds

git-svn-id: svn://svn.berlios.de/openocd/trunk@831 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
ntfreak
2008-07-18 13:31:37 +00:00
parent 60ba4476df
commit 2c3f0ebae9
3 changed files with 10 additions and 19 deletions

View File

@@ -29,24 +29,18 @@ void openocd_sleep_postlude()
{
}
/*
This is the main entry for developer PC hosted OpenOCD.
OpenOCD can also be used as a library that is linked with
another application(not mainstream yet, but possible), e.g.
w/as an embedded application.
Those applications will have their own main() implementation
and use bits and pieces from openocd.c.
*/
/* This is the main entry for developer PC hosted OpenOCD.
*
* OpenOCD can also be used as a library that is linked with
* another application(not mainstream yet, but possible), e.g.
* w/as an embedded application.
*
* Those applications will have their own main() implementation
* and use bits and pieces from openocd.c. */
extern int openocd_main(int argc, char *argv[]);
int main(int argc, char *argv[])
{
return openocd_main(argc, argv);
}