Changeset 2d8a4ed0 in rtems


Ignore:
Timestamp:
11/17/99 15:32:30 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
0d523ca
Parents:
4ccd020
Message:

Conditionally take out the offensive pragma pack when on RTEMS in addition
to UnixWare? (UW).

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/libnetworking/rtems_webserver/uemf.h

    r4ccd020 r2d8a4ed0  
    317317 *      These values are not prefixed so as to aid code readability
    318318 */
    319 #ifndef UW
     319#if !defined(UW) && !defined(__rtems__)
    320320#pragma pack(2)
    321321#endif
     
    362362        (((v)->type == bytes) ? (v)->value.bytes : (v)->value.string)
    363363
    364 #ifndef UW
     364#if !defined(UW) && !defined(__rtems__)
    365365#pragma pack()
    366366#endif
  • cpukit/httpd/uemf.h

    r4ccd020 r2d8a4ed0  
    317317 *      These values are not prefixed so as to aid code readability
    318318 */
    319 #ifndef UW
     319#if !defined(UW) && !defined(__rtems__)
    320320#pragma pack(2)
    321321#endif
     
    362362        (((v)->type == bytes) ? (v)->value.bytes : (v)->value.string)
    363363
    364 #ifndef UW
     364#if !defined(UW) && !defined(__rtems__)
    365365#pragma pack()
    366366#endif
Note: See TracChangeset for help on using the changeset viewer.