From efc55863f46a00e6b28e5af9eed540d1ce5cf7db Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Sat, 21 Jun 2014 16:33:31 +0000 Subject: [PATCH] Added a missing file --- h2/lib/posix/h2-io-file-get_default_option.adb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 h2/lib/posix/h2-io-file-get_default_option.adb diff --git a/h2/lib/posix/h2-io-file-get_default_option.adb b/h2/lib/posix/h2-io-file-get_default_option.adb new file mode 100644 index 0000000..12f276e --- /dev/null +++ b/h2/lib/posix/h2-io-file-get_default_option.adb @@ -0,0 +1,13 @@ +separate (H2.IO.File) + +function Get_Default_Option return Option_Record is + + Default_Option: constant Option_Record := ( + Bits => OPTION_CRLF_IN, + CR => Ascii.Code.CR, + LF => Ascii.Code.LF + ); + +begin + return Default_Option; +end Get_Default_Option;