diff options
author | phk <phk@FreeBSD.org> | 2005-02-09 20:56:32 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2005-02-09 20:56:32 +0000 |
commit | 94b3cce893d49fffb49745b93de8fd8935a203bc (patch) | |
tree | da2f251b559c803dec6634efd86c3dff26f85498 /sys/dev/ieee488/ugpib.h | |
parent | ad21eaf4a14b7d941b1d6cda9339f7bebfe2eca8 (diff) | |
download | FreeBSD-src-94b3cce893d49fffb49745b93de8fd8935a203bc.zip FreeBSD-src-94b3cce893d49fffb49745b93de8fd8935a203bc.tar.gz |
Constify.
Diffstat (limited to 'sys/dev/ieee488/ugpib.h')
-rw-r--r-- | sys/dev/ieee488/ugpib.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ieee488/ugpib.h b/sys/dev/ieee488/ugpib.h index 77b7fcd..04467c7 100644 --- a/sys/dev/ieee488/ugpib.h +++ b/sys/dev/ieee488/ugpib.h @@ -143,10 +143,10 @@ int ibtmo(int handle, int tmo); int ibtrap(int mask, int mode); int ibtrg(int handle); int ibwait(int handle, int mask); -int ibwrt(int handle, void *buffer, long cnt); -int ibwrta(int handle, void *buffer, long cnt); -int ibwrtf(int handle, char *flname); -int ibwrtkey(int handle, void *buffer, int cnt); +int ibwrt(int handle, const void *buffer, long cnt); +int ibwrta(int handle, const void *buffer, long cnt); +int ibwrtf(int handle, const char *flname); +int ibwrtkey(int handle, const void *buffer, int cnt); int ibxtrc(int handle, void *buffer, long cnt); #endif /* _KERNEL */ #endif /* _DEV_IEEE488_UGPIB_H_ */ |