Changeset 2781


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

Corrected two unsigned returns which should've been signed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libc/include/386/builtin.h

    r2739 r2781  
    132132 * @param   pi32    Pointer to the value to increment.
    133133 */
    134 static __inline__ uint32_t __atomic_increment_s32(int32_t __volatile__ *pi32)
     134static __inline__ int32_t __atomic_increment_s32(int32_t __volatile__ *pi32)
    135135{
    136136    int32_t i32;
     
    192192 * @param   pi32    Pointer to the value to decrement.
    193193 */
    194 static __inline__ uint32_t __atomic_decrement_s32(__volatile__ int32_t *pi32)
     194static __inline__ int32_t __atomic_decrement_s32(__volatile__ int32_t *pi32)
    195195{
    196196    int32_t i32;
Note: See TracChangeset for help on using the changeset viewer.