mirror of https://github.com/golang/go.git
fix loader problem loading main from a library
SVN=121174
This commit is contained in:
parent
3adcf6fa0e
commit
6633be6a86
|
|
@ -4,6 +4,13 @@
|
||||||
|
|
||||||
#include "gg.h"
|
#include "gg.h"
|
||||||
|
|
||||||
|
int
|
||||||
|
main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
mainlex(argc, argv);
|
||||||
|
return 99;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* machine size and rounding
|
* machine size and rounding
|
||||||
* alignment is dictated around
|
* alignment is dictated around
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue