diff options
author | Sanjit Bhat <[email protected]> | 2023-11-02 10:48:37 -0400 |
---|---|---|
committer | Sanjit Bhat <[email protected]> | 2023-11-02 10:48:37 -0400 |
commit | fc66c882be2fec6f607e28f2af8ccd5cf1a21dde (patch) | |
tree | 2f5c3d32c02ea5686686acf7fe07935546a40620 /user/user.h | |
parent | 03e8bd76560d4a1883ef15846df0e52748d61bdf (diff) | |
download | xv6-labs-fc66c882be2fec6f607e28f2af8ccd5cf1a21dde.tar.gz xv6-labs-fc66c882be2fec6f607e28f2af8ccd5cf1a21dde.tar.bz2 xv6-labs-fc66c882be2fec6f607e28f2af8ccd5cf1a21dde.zip |
mmap: missed one ifdef
Diffstat (limited to 'user/user.h')
-rw-r--r-- | user/user.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/user/user.h b/user/user.h index c6f51b7..2d6ace6 100644 --- a/user/user.h +++ b/user/user.h @@ -51,4 +51,6 @@ void free(void*); int atoi(const char*); int memcmp(const void *, const void *, uint); void *memcpy(void *, const void *, uint); +#ifdef LAB_LOCK int statistics(void*, int); +#endif |