57718be8fa
minus the vendor Makefiles Provide directions for how to bootstrap the vendor sources in FREEBSD-upgrade MFC after 2 weeks Discussed with: rpaulo Sponsored by: EMC / Isilon Storage Division
10 lines
142 B
C++
10 lines
142 B
C++
#include <unistd.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
static const char msg[] = "main executed\n";
|
|
write(STDOUT_FILENO, msg, sizeof(msg) - 1);
|
|
return 0;
|
|
}
|