Ticket #4816: boost_asio_bug_cygwin.cpp
| File boost_asio_bug_cygwin.cpp, 391 bytes (added by , 12 years ago) |
|---|
| Line | |
|---|---|
| 1 | /// boost_asio_cygwin_bug |
| 2 | /// --------------------- |
| 3 | /// this simple program demonstrate the header for boost::asio |
| 4 | /// can't compile with gcc in a Cygwin environment. |
| 5 | /// |
| 6 | /// <try to> compile with: |
| 7 | /// gcc -c boost_asio_cygwin_bug.cpp |
| 8 | /// |
| 9 | |
| 10 | #include <cstdlib> |
| 11 | #include <cstring> |
| 12 | #include <iostream> |
| 13 | |
| 14 | #include <boost/asio.hpp> |
| 15 | |
| 16 | int main(int argc, char* argv[]) |
| 17 | { |
| 18 | return 0; |
| 19 | } |
