aboutsummaryrefslogtreecommitdiff
path: root/src/misc.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc.adb')
-rw-r--r--src/misc.adb23
1 files changed, 1 insertions, 22 deletions
diff --git a/src/misc.adb b/src/misc.adb
index 0a16450..009836c 100644
--- a/src/misc.adb
+++ b/src/misc.adb
@@ -9,28 +9,7 @@
package body Misc is
- function Max
- (A, B : in Integer)
- return Integer is
- begin
- if B > A then
- return B;
- else
- return A;
- end if;
- end Max;
-
-
- function Min
- (A, B : in Integer)
- return Integer is
- begin
- if B < A then
- return B;
- else
- return A;
- end if;
- end Min;
+ -- null
end Misc;