/** @file list5401.cpp */
/** Listing 54-1. Header That Declares a Trivial Debugging Function */
#ifndef DEBUG_HPP_
#define DEBUG_HPP_

#include <string>

void debug(std::string const&);

#endif
