e79d4932ea
Replace #ifdef with #if defined() and #elif with #elif defined() as it should only test if it is defined or not.
16 lines
268 B
C
16 lines
268 B
C
/* See LICENSE file for copyright and license details. */
|
|
#if defined(__linux__)
|
|
#include <stdio.h>
|
|
|
|
#include "../util.h"
|
|
|
|
const char *
|
|
temp(const char *file)
|
|
{
|
|
int temp;
|
|
|
|
return (pscanf(file, "%d", &temp) == 1) ?
|
|
bprintf("%d", temp / 1000) : NULL;
|
|
}
|
|
#endif
|