diff options
Diffstat (limited to 'load-dropin.c')
-rw-r--r-- | load-dropin.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/load-dropin.c b/load-dropin.c new file mode 100644 index 0000000000..7105cb86a6 --- /dev/null +++ b/load-dropin.c @@ -0,0 +1,11 @@ +/*-*- Mode: C; c-basic-offset: 8 -*-*/ + +#include "load-dropin.h" + +int name_load_dropin(Name *n) { + assert(n); + + /* Load dependencies from supplementary drop-in directories */ + + return 0; +} |