mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-12 09:17:44 +03:00
12 lines
210 B
C
12 lines
210 B
C
/*-*- 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;
|
|
}
|