summaryrefslogtreecommitdiff
path: root/staticd/static_memory.h
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@diac24.net>2021-03-22 19:41:54 +0100
committerDavid Lamparter <equinox@diac24.net>2021-03-22 19:41:54 +0100
commit8392606ec10309999162c9666bf5d964b85d28cc (patch)
tree1c34f704776f7f98984c9601820fac2221bcca02 /staticd/static_memory.h
parent30043e4ce2160cd8110b73beedf2e6b068794ac6 (diff)
staticd: kill static_memory.h, use MTYPE_STATIC
This one needed a move of zebra_stable_node_cleanup() from static_vrf.c to static_routes.c. But it seems to actually make sense there. Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'staticd/static_memory.h')
-rw-r--r--staticd/static_memory.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/staticd/static_memory.h b/staticd/static_memory.h
deleted file mode 100644
index 5348129ab2..0000000000
--- a/staticd/static_memory.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * static memory code.
- * Copyright (C) 2018 Cumulus Networks, Inc.
- * Donald Sharp
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation; either version 2 of the License, or (at your option)
- * any later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- * more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; see the file COPYING; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- */
-#ifndef __STATIC_MEMORY_H__
-
-#include "memory.h"
-
-DECLARE_MGROUP(STATIC);
-
-DECLARE_MTYPE(STATIC_ROUTE);
-DECLARE_MTYPE(STATIC_NEXTHOP);
-DECLARE_MTYPE(STATIC_PATH);
-
-#endif