ef7b647b3b
-the assembler file seems to work for Linux and FreeBSD -try to fix main() for HP-UX compiler Alex
14 lines
198 B
C
14 lines
198 B
C
#include <stdio.h>
|
|
|
|
#ifdef __CLASSIC_C__
|
|
int main(){
|
|
int ac;
|
|
char*av[];
|
|
#else
|
|
int main(int ac, char*av[]){
|
|
#endif
|
|
{
|
|
printf("hello assembler world, %d arguments given\n", argc);
|
|
return 0;
|
|
}
|