Changeset 495f836 in rtems
- Timestamp:
- 05/23/22 07:04:12 (6 weeks ago)
- Branches:
- master
- Children:
- f91f30f6
- Parents:
- 6553bf4
- git-author:
- Sebastian Huber <sebastian.huber@…> (05/23/22 07:04:12)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (05/23/22 07:09:08)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/src/kern_ntptime.c
r6553bf4 r495f836 75 75 #define time_uptime _Timecounter_Time_uptime 76 76 struct thread; 77 static __inline long lmax(long a, long b) { return (a > b ? a : b); } 78 static __inline quad_t qmin(quad_t a, quad_t b) { return (a < b ? a : b); } 77 78 static inline long 79 lmax(long a, long b) 80 { 81 82 if (a > b) 83 return (a); 84 return (b); 85 } 86 87 static inline quad_t 88 qmin(quad_t a, quad_t b) 89 { 90 91 if (a < b) 92 return (a); 93 return (b); 94 } 79 95 #endif /* __rtems__ */ 80 96
Note: See TracChangeset
for help on using the changeset viewer.