Mercurial > cgi-bin > hgwebdir.cgi > VMS > C_Libraries > Histogram
diff Histogram.c @ 27:75df4e468930
rearrange to work with autoconf
| author | Nina Engelhardt <nengel@mailbox.tu-berlin.de> |
|---|---|
| date | Tue, 25 Sep 2012 16:04:31 +0200 |
| parents | 7664da1180fd |
| children | 2aa025da7c60 |
line diff
1.1 --- a/Histogram.c Mon Sep 17 11:24:29 2012 +0200 1.2 +++ b/Histogram.c Tue Sep 25 16:04:31 2012 +0200 1.3 @@ -93,7 +93,7 @@ 1.4 return hist; 1.5 } 1.6 1.7 -void inline 1.8 +void 1.9 addToHist( int32 value, Histogram *hist ) 1.10 { 1.11 int32 binIdx; 1.12 @@ -112,7 +112,7 @@ 1.13 hist->bins[ binIdx ] += 1; 1.14 } 1.15 1.16 -void inline 1.17 +void 1.18 subFromHist( int32 value, Histogram *hist ) 1.19 { 1.20 int32 binIdx; 1.21 @@ -134,7 +134,7 @@ 1.22 1.23 /*Inline because use with RDTSC in innermost code so need ultra-fast 1.24 */ 1.25 -void inline 1.26 +void 1.27 addIntervalToHist( uint32 startIntvl, uint32 endIntvl, Histogram *hist ) 1.28 { 1.29 int32 value; 1.30 @@ -144,7 +144,7 @@ 1.31 addToHist( value, hist ); 1.32 } 1.33 1.34 -void inline 1.35 +void 1.36 subIntervalFromHist( int32 startIntvl, int32 endIntvl, Histogram *hist ) 1.37 { 1.38 int32 value;
