summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormo <mo.khan@gmail.com>2019-05-22 20:45:24 -0600
committermo <mo.khan@gmail.com>2019-05-22 20:45:24 -0600
commiteee99baba0c7fe58d1cafc47dda5096650d41ca1 (patch)
tree89801ac8aa2dec299ef5cc5d4e5ff6b43e33521c /src
parentc2b575e70cfc74a95d52561809f5d612fc886d99 (diff)
write tiny c program
Diffstat (limited to 'src')
-rw-r--r--src/temperature.c5
-rw-r--r--src/temperature.h1
2 files changed, 6 insertions, 0 deletions
diff --git a/src/temperature.c b/src/temperature.c
new file mode 100644
index 0000000..de6c280
--- /dev/null
+++ b/src/temperature.c
@@ -0,0 +1,5 @@
+#include <stdio.h>
+
+int main(int argc, char **argv) {
+ printf("Hello");
+}
diff --git a/src/temperature.h b/src/temperature.h
new file mode 100644
index 0000000..53c5fdf
--- /dev/null
+++ b/src/temperature.h
@@ -0,0 +1 @@
+#include <stdio.h>