blob: 8fa97f7fa89e0fe97bddd0e0417ee787d3d21724 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* -*- C++ -*- */
// $Id$
// This configuration file automatically includes the proper
// configurations for IBM's VisualAge C++ compiler on Win32 and AIX.
#ifdef __TOS_WIN__
#include "ace/config-win32.h"
#elif __TOS_AIX__
#include "ace/config-aix-4.x.h"
#else
#include "PLATFORM NOT SPECIFIED"
#endif /* __TOS_WIN__ */
|