summaryrefslogtreecommitdiff
path: root/6p4.cpp
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-09-05 11:18:52 +0200
committerOskar <[email protected]>2024-09-05 11:18:52 +0200
commitd2f183b8d0008bdb29e6c5c4fa04c14d7525ca9b (patch)
treed1ab4ddc3cea4214ffdb8f574a85283545b372f8 /6p4.cpp
parenta30d605024322ada2206d10898b8dfd6220107c1 (diff)
more
Diffstat (limited to '6p4.cpp')
-rw-r--r--6p4.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/6p4.cpp b/6p4.cpp
index 28c6fa5..441d423 100644
--- a/6p4.cpp
+++ b/6p4.cpp
@@ -7,7 +7,7 @@
*
*/
-uint64_t fact(void) {
+uint64_t fact_i(void) {
uint64_t val;
if(std::cin >> val) {} else { return 0; }
@@ -21,6 +21,6 @@ uint64_t fact(void) {
int main () {
- std::cout << fact() << std::endl;
+ std::cout << fact_i() << std::endl;
return 0;
}