harmonize the include guards and #endif comments

This commit is contained in:
Pascal Massimino
2011-09-07 05:31:28 +00:00
committed by James Zern
parent a1ec07a618
commit ee697d9fc9
5 changed files with 9 additions and 9 deletions

View File

@ -30,7 +30,7 @@ static inline double StopwatchReadAndReset(Stopwatch* watch) {
}
#else // !_WIN32
#else /* !_WIN32 */
#include <sys/time.h>
typedef struct timeval Stopwatch;
@ -42,6 +42,6 @@ static inline double StopwatchReadAndReset(Stopwatch* watch) {
(watch->tv_usec - old_value.tv_usec) / 1000000.0;
}
#endif // !_WIN32
#endif /* _WIN32 */
#endif // WEBP_EXAMPLES_STOPWATCH_H_
#endif /* WEBP_EXAMPLES_STOPWATCH_H_ */