File: trysysinfo.c

package info (click to toggle)
ngetty 1.1-3.1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 392 kB
  • sloc: ansic: 1,588; makefile: 206; sh: 193; asm: 100
file content (5 lines) | stat: -rw-r--r-- 88 bytes parent folder | download | duplicates (7)
1
2
3
4
5
#include <sys/sysinfo.h>
int main() {
  struct sysinfo info;
  return sysinfo(&info);
}