Ignore:
Timestamp:
Aug 27, 2006, 9:35:30 AM (19 years ago)
Author:
bird
Message:

Corrected two unsigned returns which should've been signed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/libc-0.6/src/emx/include/386/builtin.h

    r2049 r2780  
    184184 * @param   pi32    Pointer to the value to increment.
    185185 */
    186 static __inline__ uint32_t __atomic_increment_s32(int32_t __volatile__ *pi32)
     186static __inline__ int32_t __atomic_increment_s32(int32_t __volatile__ *pi32)
    187187{
    188188    int32_t i32;
     
    244244 * @param   pi32    Pointer to the value to decrement.
    245245 */
    246 static __inline__ uint32_t __atomic_decrement_s32(__volatile__ int32_t *pi32)
     246static __inline__ int32_t __atomic_decrement_s32(__volatile__ int32_t *pi32)
    247247{
    248248    int32_t i32;
Note: See TracChangeset for help on using the changeset viewer.