CSC-4730 / P5 / xv6 / test_count.c
test_count.c
Raw
#include "param.h"
#include "types.h"
#include "stat.h"
#include "user.h"
#include "fs.h"
#include "fcntl.h"
#include "syscall.h"
#include "traps.h"
#include "memlayout.h"

int main() {
    int c = count();
    printf(1, "count returns: %d\n", c);
    exit();
}