/* * Copyright (C) 2018 AVM GmbH * * 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. */ #pragma once #ifdef __GNUC__ # define __hidden __attribute__((visibility("hidden"))) #else # define __hidden #endif const char *watchdog_device_name(void) __hidden; int watchdog_open_device(void) __hidden;