summaryrefslogtreecommitdiff
path: root/math.h
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-08-25 23:04:24 -0400
committerB Stack <bgstack15@gmail.com>2019-08-25 23:04:24 -0400
commitda08171e0c65e278feeb8393b5a8f7e79ea491c9 (patch)
tree728fd5de284626349bc9e9f5f48f30a83e0efc10 /math.h
parentinitial commit (diff)
downloadcpp-da08171e0c65e278feeb8393b5a8f7e79ea491c9.tar.gz
cpp-da08171e0c65e278feeb8393b5a8f7e79ea491c9.tar.bz2
cpp-da08171e0c65e278feeb8393b5a8f7e79ea491c9.zip
at page 3.6HEADmaster
Improved the makefile for multifile project, including header files.
Diffstat (limited to 'math.h')
-rw-r--r--math.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/math.h b/math.h
new file mode 100644
index 0000000..dfa8d0f
--- /dev/null
+++ b/math.h
@@ -0,0 +1,6 @@
+#ifndef MATH9385
+#define MATH9385
+int getNumberFromUser() ;
+int doubleNumber(int x) ;
+
+#endif
bgstack15