2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00
Files
build/examples/lib_use/simple_lib.cpp
Rene Rivera a0a6ba0478 Documentation, and removed tabs.
[SVN r14454]
2002-07-14 18:18:54 +00:00

14 lines
369 B
C++

/*
Copyright (C) 2002, Rene Rivera. Permission to copy, use, modify, sell and
distribute this software is granted provided this copyright notice appears in
all copies. This software is provided "as is" without express or implied
warranty, and with no claim as to its suitability for any purpose.
*/
extern int lib_call(int x);
int lib_call(int x)
{
return x*2;
}