This website requires JavaScript.
Explore
Help
Register
Sign In
reactos
/
CMake
Watch
1
Star
0
Fork
0
You've already forked CMake
mirror of
https://github.com/reactos/CMake.git
synced
2024-12-19 17:47:45 +00:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
8372b4553b
CMake
/
Tests
/
LibName
/
foobar.c
11 lines
100 B
C
Raw
Normal View
History
Unescape
Escape
ENH: fix errors for unix builds
2006-11-29 22:45:55 +00:00
#
ifdef _WIN32
Remove trailing whitespace from most CMake and C/C++ code Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//'
2012-08-13 17:42:58 +00:00
__declspec
(
dllimport
)
ENH: fix errors for unix builds
2006-11-29 22:45:55 +00:00
#
endif
ENH: add extern for hp c compiler
2006-11-30 02:53:52 +00:00
extern
void
bar
(
)
;
BUG: fix a problem where it tried to link .dll.lib files
2006-11-29 20:58:19 +00:00
ENH: make it work for hp
2006-11-30 14:51:07 +00:00
int
main
(
)
BUG: fix a problem where it tried to link .dll.lib files
2006-11-29 20:58:19 +00:00
{
bar
(
)
;
return
0
;
}
Reference in New Issue
Copy Permalink