aboutsummaryrefslogtreecommitdiffstats
path: root/include/subsys.h
blob: 1515293931ffeb691816cc2b341bfd4caf16c3b1 (plain)
1
2
3
4
5
6
7
#ifndef __SUBSYS_H
#define __SUBSYS_H

int __impl_start_subsystem(char *name, int (*fn)(void));
#define start_subsystem(fn) __impl_start_subsystem(#fn, fn)

#endif