diff options
| author | 2019-04-13 12:40:52 -0400 | |
|---|---|---|
| committer | 2019-04-13 12:40:52 -0400 | |
| commit | 55bfff7cf6541caac172b43186cf14405185b14d (patch) | |
| tree | c1ae99d2b39f8df8933d81ec2e61e81050bdb410 /frontends/calculator/CEdev/examples/template/src | |
| parent | 761462861fc1228e65546c4e0f877d5212320082 (diff) | |
| download | cetris-55bfff7cf6541caac172b43186cf14405185b14d.tar.gz cetris-55bfff7cf6541caac172b43186cf14405185b14d.tar.bz2 cetris-55bfff7cf6541caac172b43186cf14405185b14d.zip | |
fix curses on linux
Diffstat (limited to 'frontends/calculator/CEdev/examples/template/src')
| -rw-r--r-- | frontends/calculator/CEdev/examples/template/src/main.c | 60 |
1 files changed, 30 insertions, 30 deletions
diff --git a/frontends/calculator/CEdev/examples/template/src/main.c b/frontends/calculator/CEdev/examples/template/src/main.c index 88416b7..65eaafd 100644 --- a/frontends/calculator/CEdev/examples/template/src/main.c +++ b/frontends/calculator/CEdev/examples/template/src/main.c @@ -1,30 +1,30 @@ -/* - *-------------------------------------- - * Program Name: - * Author: - * License: - * Description: - *-------------------------------------- -*/ - -/* Keep these headers */ -#include <stdbool.h> -#include <stddef.h> -#include <stdint.h> -#include <tice.h> - -/* Standard headers (recommended) */ -#include <math.h> -#include <stdio.h> -#include <stdlib.h> -#include <string.h> - -/* Put your function prototypes here */ - -/* Put all your globals here */ - -void main(void) { - /* Fill in the body of the main function here */ -} - -/* Put other functions here */ +/*
+ *--------------------------------------
+ * Program Name:
+ * Author:
+ * License:
+ * Description:
+ *--------------------------------------
+*/
+
+/* Keep these headers */
+#include <stdbool.h>
+#include <stddef.h>
+#include <stdint.h>
+#include <tice.h>
+
+/* Standard headers (recommended) */
+#include <math.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+/* Put your function prototypes here */
+
+/* Put all your globals here */
+
+void main(void) {
+ /* Fill in the body of the main function here */
+}
+
+/* Put other functions here */
|