Revert to requiring that exec return -1 if there is a problem loading
[pintos-anon] / grading / lib / cksum.h
1 #ifndef CKSUM_H
2 #define CKSUM_H
3
4 #include <stddef.h>
5
6 unsigned long cksum(const unsigned char *b, size_t n);
7
8 #endif /* cksum.h */