Plan 9 from Bell Labs’s /usr/web/sources/contrib/paurea/flushtest/main.c

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#include <u.h>
#include <libc.h>

/*
	5a x.s
	5c -FVw main.c
	5l -o main main.5 x.5

*/

int cacheflush(void *from, void *to);

void
usage(void)
{
	fprint(2, "usage: %s  \n", argv0);
	sysfatal("usage");
}

char bla[32];

void
main(int, char *[])
{
	cacheflush(bla, bla + sizeof(bla));
	print("OK, instructions work\n");
}

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.