summaryrefslogtreecommitdiff
path: root/lib/libc/syslog/setlogmask.c
blob: 5248540ef4df348339e28135f7095b833d3dfcfc (plain)
1
2
3
4
5
6
7
8
#include <syslog.h> // for setlogmask

int setlogmask(int maskpri)
{
	(void)maskpri;
	// TODO
	return 0;
}