mirror of https://github.com/Icinga/icinga2.git
21 lines
351 B
C
21 lines
351 B
C
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
int i;
|
|
|
|
if (argc < 3) {
|
|
fprintf(stderr, "Syntax: %s <prefix> [<file> ...]\n", argv[0]);
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
for (i = 2; i < argc; i++) {
|
|
printf("#include \"%s/%s\"\n", argv[1], argv[i]);
|
|
}
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|