mirror of
https://github.com/systemd/systemd.git
synced 2024-11-14 15:21:37 +03:00
12 lines
185 B
C
12 lines
185 B
C
/*-*- Mode: C; c-basic-offset: 8 -*-*/
|
|
|
|
#include "load-fstab.h"
|
|
|
|
int unit_load_fstab(Unit *u) {
|
|
assert(u);
|
|
|
|
/* Load dependencies from /etc/fstab */
|
|
|
|
return 0;
|
|
}
|