Xinqi Bao's Git
projects
/
slstatus.git
/ blob
summary
|
log
|
commit
|
diff
|
tree
history
|
raw
|
HEAD
Build Linux-only functions only on Linux
[slstatus.git]
/
components
/
temperature.c
1
/* See LICENSE file for copyright and license details. */
2
#ifdef __linux__
3
#include <stdio.h>
4
5
#include
"../util.h"
6
7
const char
*
8
temp
(
const char
*
file
)
9
{
10
int
temp
;
11
12
return
(
pscanf
(
file
,
"%d"
, &
temp
) ==
1
) ?
13
bprintf
(
"%d"
,
temp
/
1000
) :
NULL
;
14
}
15
#endif