/* (C) Copyright Rene Rivera, 2002. ** Distributed under the Boost Software License, Version 1.0. ** (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) */ #include extern int lib_call(int x); int main(int /* argc */, char ** /* argv */) { for (int i = 0; i < 16; ++i) { std::printf("%d * 2 = %d\n",i,lib_call(i)); } return 0; }