Changeset 9b9efa2b for util.c


Ignore:
Timestamp:
Dec 21, 2010, 5:54:31 PM (14 years ago)
Author:
David Benjamin <davidben@mit.edu>
Branches:
master, release-1.10, release-1.8, release-1.9
Children:
fa90c34
Parents:
e974152
git-author:
David Benjamin <davidben@mit.edu> (12/15/10 13:24:03)
git-committer:
David Benjamin <davidben@mit.edu> (12/21/10 17:54:31)
Message:
Punt owl_util_max and owl_util_min in favor of MAX and MIN

glib already provides those macros which we happily use outside of one
place.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • util.c

    r950e2da r9b9efa2b  
    495495}
    496496
    497 int owl_util_max(int a, int b)
    498 {
    499   if (a>b) return(a);
    500   return(b);
    501 }
    502 
    503 int owl_util_min(int a, int b)
    504 {
    505   if (a<b) return(a);
    506   return(b);
    507 }
    508 
    509497/* Return the base class or instance from a zephyr class, by removing
    510498   leading `un' or trailing `.d'.
Note: See TracChangeset for help on using the changeset viewer.