zeek/auxil/libunistd/portable/Shutdown.cpp
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

13 lines
273 B
C++

// Shutdown.cpp
// Created by Robin Rowe 2019-07-10
// License Copyright 2019 Robin.Rowe@HeroicRobots.com ***Proprietary***
#include "Shutdown.h"
using namespace std;
Shutdown* Shutdown::handler;
ostream& Shutdown::Print(ostream& os) const
{ return os << "Shutdown";
}