Changeset 0b178f04 in rtems
- Timestamp:
- 01/10/03 15:02:52 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- eb7cddd3
- Parents:
- 7ab11c0
- Location:
- cpukit/libcsupport
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libcsupport/ChangeLog
r7ab11c0 r0b178f04 1 2003-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 1 6 2003-01-03 Till Straumann <strauman@slac.stanford.edu> 2 7 -
cpukit/libcsupport/include/rtems/libio.h
r7ab11c0 r0b178f04 469 469 #include <unistd.h> 470 470 471 union __ dev_t {471 union __rtems_dev_t { 472 472 dev_t device; 473 473 struct { … … 482 482 ) 483 483 { 484 union __ dev_t temp;484 union __rtems_dev_t temp; 485 485 486 486 temp.__overlay.major = _major; … … 493 493 ) 494 494 { 495 union __ dev_t temp;495 union __rtems_dev_t temp; 496 496 497 497 temp.device = device; … … 504 504 ) 505 505 { 506 union __ dev_t temp;506 union __rtems_dev_t temp; 507 507 508 508 temp.device = device;
Note: See TracChangeset
for help on using the changeset viewer.