Rename README to README.md
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
diff --git a/README b/README
deleted file mode 100644
index f726ec1..0000000
--- a/README
+++ /dev/null
@@ -1,41 +0,0 @@
-dlfcn-win32
-===========
-
-dlfcn-win32 is an implementation of dlfcn for Windows.
-
-dlfcn is a set of functions that allows runtime dynamic library loading. It is
-standardized in the POSIX. Windows also provide similar routines, but not in a
-POSIX-compatible way. This library attempts to implement a wrapper around the
-Windows functions to make programs written for POSIX that use dlfcn work in
-Windows without any modifications.
-
-It follows the standard as described here:
-
-http://www.opengroup.org/onlinepubs/009695399/basedefs/dlfcn.h.html
-http://www.opengroup.org/onlinepubs/009695399/functions/dlerror.html
-http://www.opengroup.org/onlinepubs/009695399/functions/dlsym.html
-http://www.opengroup.org/onlinepubs/009695399/functions/dlclose.html
-http://www.opengroup.org/onlinepubs/009695399/functions/dlopen.html
-
-Author
-------
-
-Written by Ramiro Polla in 2007.
-Maintained by Tiancheng "Timothy" Gu from 2013 to 2014.
-
-License
--------
-
-dlfcn-win32 is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-dlfcn-win32 is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with dlfcn-win32; if not, write to the Free Software
-Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..f726ec1
--- /dev/null
+++ b/README.md
@@ -0,0 +1,41 @@
+dlfcn-win32
+===========
+
+dlfcn-win32 is an implementation of dlfcn for Windows.
+
+dlfcn is a set of functions that allows runtime dynamic library loading. It is
+standardized in the POSIX. Windows also provide similar routines, but not in a
+POSIX-compatible way. This library attempts to implement a wrapper around the
+Windows functions to make programs written for POSIX that use dlfcn work in
+Windows without any modifications.
+
+It follows the standard as described here:
+
+http://www.opengroup.org/onlinepubs/009695399/basedefs/dlfcn.h.html
+http://www.opengroup.org/onlinepubs/009695399/functions/dlerror.html
+http://www.opengroup.org/onlinepubs/009695399/functions/dlsym.html
+http://www.opengroup.org/onlinepubs/009695399/functions/dlclose.html
+http://www.opengroup.org/onlinepubs/009695399/functions/dlopen.html
+
+Author
+------
+
+Written by Ramiro Polla in 2007.
+Maintained by Tiancheng "Timothy" Gu from 2013 to 2014.
+
+License
+-------
+
+dlfcn-win32 is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2.1 of the License, or (at your option) any later version.
+
+dlfcn-win32 is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with dlfcn-win32; if not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA