/** ** KAI C++ Compiler ** ** Copyright (C) 1996-2001 Intel Corp. All rights reserved. **/ #ifndef __KAI_ALGOBASE_H #define __KAI_ALGOBASE_H // algobase is a subset of algorithm #include using std::min; using std::max; using std::mismatch; using std::equal; using std::copy; using std::copy_backward; using std::swap; using std::fill; using std::fill_n; using std::lexicographical_compare; #endif /* __KAI_ALGOBASE_H */