diff options
author | ftrvxmtrx <ftrvxmtrx@gmail.com> | 2015-06-09 23:23:00 +0200 |
---|---|---|
committer | ftrvxmtrx <ftrvxmtrx@gmail.com> | 2015-06-09 23:23:00 +0200 |
commit | e77002cdab4f069cd4ba2e489f2f9bc090b09ab7 (patch) | |
tree | ba7f1776fe0634f22e02638d16a65a3d2abd57e6 /sys/man/2 | |
parent | 477f3ce3ea48aa34ee74fafcc782ef1a0f18ad2c (diff) |
freeimage(2), readcolmap(2), writecolmap(2): fix prototypes
Diffstat (limited to 'sys/man/2')
-rw-r--r-- | sys/man/2/allocimage | 2 | ||||
-rw-r--r-- | sys/man/2/readcolmap | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/man/2/allocimage b/sys/man/2/allocimage index 2a584c143..1946a342d 100644 --- a/sys/man/2/allocimage +++ b/sys/man/2/allocimage @@ -22,7 +22,7 @@ Image *allocimage(Display *d, Rectangle r, Image *allocimagemix(Display *d, ulong one, ulong three) .PP .B -void freeimage(Image *i) +int freeimage(Image *i) .PP .B int nameimage(Image *i, char *name, int in) diff --git a/sys/man/2/readcolmap b/sys/man/2/readcolmap index 5ea74cb33..fef7383d7 100644 --- a/sys/man/2/readcolmap +++ b/sys/man/2/readcolmap @@ -12,10 +12,10 @@ RGB, readcolmap, writecolmap \- access display color map .ta \w'\fLvoid 'u .PP .B -int readcolmap(Display *d, RGB *map) +void readcolmap(Display *d, RGB *map) .PP .B -int writecolmap(Display *d, RGB *map) +void writecolmap(Display *d, RGB *map) .fi .SH DESCRIPTION Colors are described by their red, green, and blue |