mirror of
https://github.com/systemd/systemd.git
synced 2024-12-22 17:35:35 +03:00
12 lines
185 B
C
12 lines
185 B
C
/*-*- Mode: C; c-basic-offset: 8 -*-*/
|
|
|
|
#include "load-fstab.h"
|
|
|
|
int name_load_fstab(Name *n) {
|
|
assert(n);
|
|
|
|
/* Load dependencies from /etc/fstab */
|
|
|
|
return 0;
|
|
}
|