aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/functions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libsample/functions.cpp')
-rw-r--r--tests/libsample/functions.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/libsample/functions.cpp b/tests/libsample/functions.cpp
index 9a0bf2e..be1e2f9 100644
--- a/tests/libsample/functions.cpp
+++ b/tests/libsample/functions.cpp
@@ -131,6 +131,18 @@ doubleUnsignedInt(unsigned int value)
return value * 2;
}
+long long
+doubleLongLong(long long value)
+{
+ return value * 2;
+}
+
+unsigned long long
+doubleUnsignedLongLong(unsigned long long value)
+{
+ return value * 2;
+}
+
short
doubleShort(short value)
{