1 #include "org/open_power/Host/Boot/error.hpp" 2 #include "phosphor-logging/elog-errors.hpp" 3 4 #include <phosphor-logging/elog.hpp> 5 6 int main(int /*argc*/, char** /*argv*/) 7 { 8 using namespace phosphor::logging; 9 using error = 10 sdbusplus::org::open_power::Host::Boot::Error::WatchdogTimedOut; 11 report<error>(); 12 13 return 0; 14 } 15