1
1
mirror of https://github.com/foxsen/archbase.git synced 2026-04-13 13:59:41 +08:00

initial import to public repository

This commit is contained in:
Zhang Fuxin
2021-10-27 19:14:51 +08:00
commit c632bed67e
362 changed files with 53748 additions and 0 deletions

8
materials/chapter4/fun.c Normal file
View File

@@ -0,0 +1,8 @@
extern void abort(void);
int fun(double a1, double a2, double a3, double a4, double a5, double a6,
double a7, double a8, double a9, int a10, double a11, int a12)
{
if (a9 != a11) abort();
return 0;
}