avr-libc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[avr-libc-commit] [2490] patch: #8728 Use __extension__ with long long -


From: Senthil Kumar Selvaraj
Subject: [avr-libc-commit] [2490] patch: #8728 Use __extension__ with long long - helps avr-gcc testing with C90 tests .
Date: Tue, 06 Oct 2015 12:45:41 +0000

Revision: 2490
          http://svn.sv.gnu.org/viewvc/?view=rev&root=avr-libc&revision=2490
Author:   saaadhu
Date:     2015-10-06 12:45:41 +0000 (Tue, 06 Oct 2015)
Log Message:
-----------
patch:#8728 Use __extension__ with long long - helps avr-gcc testing with C90 
tests.

Modified Paths:
--------------
    trunk/avr-libc/ChangeLog
    trunk/avr-libc/NEWS
    trunk/avr-libc/include/stdio.h

Modified: trunk/avr-libc/ChangeLog
===================================================================
--- trunk/avr-libc/ChangeLog    2015-10-06 09:43:29 UTC (rev 2489)
+++ trunk/avr-libc/ChangeLog    2015-10-06 12:45:41 UTC (rev 2490)
@@ -1,3 +1,8 @@
+2015-10-06  Georg-Johann Lay <address@hidden>
+
+       patch #8728: Use __extension__ with long long
+       * include/stdio.h: Use __extension__ when using long long.
+
 2015-10-06  Joern Rennecke <address@hidden>
 
        patch #8564: Add dwarf debug info alternative, build printf with debug 
info

Modified: trunk/avr-libc/NEWS
===================================================================
--- trunk/avr-libc/NEWS 2015-10-06 09:43:29 UTC (rev 2489)
+++ trunk/avr-libc/NEWS 2015-10-06 12:45:41 UTC (rev 2490)
@@ -40,6 +40,7 @@
   [#8718] Enable EEPROM memory map only for devices with EEPROM Data Memory
           Mapping Enable bit (EEMAPEN)
   [#8731] Header file for atmega644a
+  [#8728] Use __extension__ with long long
 
 * Other changes:
 

Modified: trunk/avr-libc/include/stdio.h
===================================================================
--- trunk/avr-libc/include/stdio.h      2015-10-06 09:43:29 UTC (rev 2489)
+++ trunk/avr-libc/include/stdio.h      2015-10-06 12:45:41 UTC (rev 2490)
@@ -944,7 +944,7 @@
 #if 1 /* ??? unimplemented  */
 #define BUFSIZ 1024
 #define _IONBF 0
-typedef long long fpos_t;
+__extension__ typedef long long fpos_t;
 extern int fgetpos(FILE *stream, fpos_t *pos);
 extern FILE *fopen(const char *path, const char *mode);
 extern FILE *freopen(const char *path, const char *mode, FILE *stream);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]