0_0_14971162_7438.cpp:16:19: error: declaration does not declare anything [-fpermissive]
typedef long long int;
^
0_0_14971162_7438.cpp:44:1: error: 'LL' does not name a type
LL Cross(Vector A, Vector B){return (LL)A.x*B.y-(LL)A.y*B.x;}
^
0_0_14971162_7438.cpp: In function 'int ConvexHull(Point*, int, Point*)':
0_0_14971162_7438.cpp:63:63: error: 'Cross' was not declared in this scope
while(m > 1 && Cross(ch[m-1] - ch[m-2], p[i] - ch[m-2]) <= 0) m--;
^
0_0_14971162_7438.cpp:69:63: error: 'Cross' was not declared in this scope
while(m > k && Cross(ch[m-1] - ch[m-2], p[i] - ch[m-2]) <= 0) m--;
^
0_0_14971162_7438.cpp: In function 'int main()':
0_0_14971162_7438.cpp:148:45: error: 'Cross' was not declared in this scope
if(Cross(v, L[idx].p - pa[i]) >= 0 && Cross(v, L[idx].p + L[idx].v - pa[i]) >= 0){
^
|