]> code.delx.au - gnu-emacs/blobdiff - msdos/inttypes.h
Update copyright year to 2016
[gnu-emacs] / msdos / inttypes.h
index e21f1b1055c8f3696cf095a6290670943b5e8b7b..da61b117f45a6fe801425ad2d280a2b0255ba4dd 100644 (file)
@@ -1,6 +1,6 @@
-/* Replacement inntypes.h file for building GNU Emacs on MS-DOS with DJGPP.
+/* Replacement inttypes.h file for building GNU Emacs on MS-DOS with DJGPP.
 
-Copyright (C) 2011  Free Software Foundation, Inc.
+Copyright (C) 2011-2016 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -30,6 +30,9 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #else  /* __DJGPP__ < 2.04 */
 #include <stdlib.h>
 #define strtoumax strtoull
+#define strtoimax strtoll
+#define PRIuMAX   "llu"
+#define PRIdMAX   "lld"
 #endif /* __DJGPP__ < 2.04 */
 
 #endif