back to scratko.xyz
aboutsummaryrefslogtreecommitdiff
path: root/calls.h
diff options
context:
space:
mode:
authorscratko <m@scratko.xyz>2024-04-02 02:03:57 +0300
committerscratko <m@scratko.xyz>2024-04-02 02:03:57 +0300
commit80749242cc6aa604c6ee3a7e3169df73c14e55d2 (patch)
treebfc4db5b1b209d81dca539588350ac7b8cfab13e /calls.h
parent8a704989e2d4733e6e847cb272a40dd85de4c9cd (diff)
downloadarithmetic-expression-computator-80749242cc6aa604c6ee3a7e3169df73c14e55d2.tar.gz
arithmetic-expression-computator-80749242cc6aa604c6ee3a7e3169df73c14e55d2.tar.bz2
arithmetic-expression-computator-80749242cc6aa604c6ee3a7e3169df73c14e55d2.zip
Minor changesHEADmaster
Corrected description. Fixed pointer symbol in some places.
Diffstat (limited to 'calls.h')
-rw-r--r--calls.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/calls.h b/calls.h
index 3e5ee24..a4469ce 100644
--- a/calls.h
+++ b/calls.h
@@ -3,8 +3,8 @@
int sys_write(int fd, const void *buf, int size);
int sys_read(int fd, void *buf, int size);
-void* sys_alloc(int size);
-void sys_free(void* p);
+void *sys_alloc(int size);
+void sys_free(void *p);
void sys_exit(int code);
extern int sys_errno;