Changeset 0b178f04 in rtems


Ignore:
Timestamp:
01/10/03 15:02:52 (20 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
eb7cddd3
Parents:
7ab11c0
Message:

2003-01-10 Joel Sherrill <joel@…>

  • include/rtems/libio.h: Rename dev_t to rtems_dev_t to avoid conflict with GNU/Linux header files.
Location:
cpukit/libcsupport
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/libcsupport/ChangeLog

    r7ab11c0 r0b178f04  
     12003-01-10      Joel Sherrill <joel@OARcorp.com>
     2
     3        * include/rtems/libio.h: Rename __dev_t to __rtems_dev_t to avoid
     4        conflict with GNU/Linux header files.
     5
    162003-01-03     Till Straumann  <strauman@slac.stanford.edu>
    27
  • cpukit/libcsupport/include/rtems/libio.h

    r7ab11c0 r0b178f04  
    469469#include <unistd.h>
    470470
    471 union __dev_t {
     471union __rtems_dev_t {
    472472  dev_t device;
    473473  struct {
     
    482482)
    483483{
    484   union __dev_t temp;
     484  union __rtems_dev_t temp;
    485485
    486486  temp.__overlay.major = _major;
     
    493493)
    494494{
    495   union __dev_t temp;
     495  union __rtems_dev_t temp;
    496496
    497497  temp.device = device;
     
    504504)
    505505{
    506   union __dev_t temp;
     506  union __rtems_dev_t temp;
    507507
    508508  temp.device = device;
Note: See TracChangeset for help on using the changeset viewer.