Remove C++-style comments from C files

This commit is contained in:
Laurence Withers 2007-02-13 16:05:10 +00:00
parent 4d0efeeb14
commit 600210a78b
5 changed files with 6 additions and 6 deletions

View File

@ -5,7 +5,7 @@
* http://www.gnu.org/copyleft/gpl.html for details.
*/
// Below are all the includes used throughout the application.
/* Below are all the includes used throughout the application. */
/* options for text editors
kate: @KATE_MODELINE@

View File

@ -5,7 +5,7 @@
* http://www.gnu.org/copyleft/gpl.html for details.
*/
// Below are all the includes used throughout the application.
/* Below are all the includes used throughout the application. */
/* options for text editors
kate: @KATE_MODELINE@

View File

@ -8,7 +8,7 @@
#ifndef HEADER_@CNAME@
#define HEADER_@CNAME@
// standard includes, or includes needed for type declarations
/* standard includes, or includes needed for type declarations */
/* options for text editors
kate: @KATE_MODELINE@

View File

@ -7,7 +7,7 @@
#include "@HEADER_NAME@"
// Below are all the includes used throughout the library.
/* Below are all the includes used throughout the library. */
/* options for text editors
kate: @KATE_MODELINE@

View File

@ -21,10 +21,10 @@ int main(int argc, char* argv[])
}
if(argc == 1) {
// empty argument list
/* empty argument list */
}
// TODO
/* TODO */
return ret;
}