mirror of
https://github.com/boostorg/build.git
synced 2026-02-15 13:02:11 +00:00
18 lines
393 B
C++
18 lines
393 B
C++
/* (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 <cstdio>
|
|
|
|
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;
|
|
}
|