summarylogtreecommitdiffstats
path: root/mem-suspend.c
blob: a343db4df3753bfecebb15ef5adb9885b3b70ffb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>

int
main(void)
{
	static const char *path = "/sys/power/state";
	int fd = open(path, O_WRONLY | O_TRUNC);

	if (fd != -1) {
		write(fd, "mem", 3);
		close(fd);
	} else {
		perror(path);
		return errno;
	}

	return 0;
}