├── .gitignore ├── CONTRIBUTORS.md ├── LICENSE ├── Makefile ├── README.md └── daemonize.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pasce/daemon-skeleton-linux-c/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | * **[Pascal Werkl](https://github.com/pasce)** 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pasce/daemon-skeleton-linux-c/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pasce/daemon-skeleton-linux-c/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pasce/daemon-skeleton-linux-c/HEAD/README.md -------------------------------------------------------------------------------- /daemonize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pasce/daemon-skeleton-linux-c/HEAD/daemonize.c --------------------------------------------------------------------------------