summaryrefslogtreecommitdiffstats
path: root/lib/pb-config/storage-null.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pb-config/storage-null.c')
-rw-r--r--lib/pb-config/storage-null.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/pb-config/storage-null.c b/lib/pb-config/storage-null.c
deleted file mode 100644
index b9fe6ed..0000000
--- a/lib/pb-config/storage-null.c
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#include <stdlib.h>
-
-#include "storage.h"
-
-static int load(struct config_storage *st __attribute__((unused)),
- struct config *config __attribute__((unused)))
-{
- return 0;
-}
-
-static struct config_storage st = {
- .load = load,
-};
-
-struct config_storage *create_null_storage(void *ctx __attribute__((unused)))
-{
- return &st;
-}
OpenPOWER on IntegriCloud