1 #ifndef NM_HW_INFO_H_
2 #define NM_HW_INFO_H_
3 
4 #include <stdint.h>
5 
6 uint32_t nm_hw_total_ram(void);
7 uint32_t nm_hw_ncpus(void);
8 uint32_t nm_hw_disk_free(void);
9 
10 #endif /* NM_HW_INFO_H_ */
11 /* vim:set ts=4 sw=4: */
12