Delete rtcdate, which is a left-over from an old lab (thanks Harry Porter)

This commit is contained in:
Frans Kaashoek 2022-08-12 09:43:18 -04:00
parent 48d1a7ffa5
commit 8bd04852c9
3 changed files with 0 additions and 10 deletions

View file

@ -1,8 +0,0 @@
struct rtcdate {
uint second;
uint minute;
uint hour;
uint day;
uint month;
uint year;
};

View file

@ -1,7 +1,6 @@
#include "types.h"
#include "riscv.h"
#include "defs.h"
#include "date.h"
#include "param.h"
#include "memlayout.h"
#include "spinlock.h"

View file

@ -1,5 +1,4 @@
struct stat;
struct rtcdate;
// system calls
int fork(void);