//: C09:UseLog1.h // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt #ifndef USELOG1_H #define USELOG1_H void f(); #endif // USELOG1_H ///:~