This website requires JavaScript.
Explore
Help
Sign In
kolan
/
CMake
Watch
1
Star
0
Fork
You've already forked CMake
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
4102949bf9
CMake
/
Tests
/
Wrapping
/
Wrap.c
8 lines
68 B
C
Raw
Normal View
History
Unescape
Escape
ENH: Add executable for wrapping test, so that make stage actually passes
2003-07-30 21:11:04 +04:00
#
include
<stdio.h>
ENH: Fix problem on HP. Whay should K&R be default?
2003-07-31 16:33:01 +04:00
int
main
(
)
ENH: Add executable for wrapping test, so that make stage actually passes
2003-07-30 21:11:04 +04:00
{
ENH: Fix problem on HP. Whay should K&R be default?
2003-07-31 16:33:01 +04:00
printf
(
"
Hello
\n
"
)
;
ENH: Add executable for wrapping test, so that make stage actually passes
2003-07-30 21:11:04 +04:00
return
0
;
}