Skip to content
Snippets Groups Projects
Commit bbe0a5e9 authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

bugfix for set_nonblocking

Rev: lib/modules/Stdio.pmod:1.33
parent d265196f
No related branches found
No related tags found
No related merge requests found
// $Id: Stdio.pmod,v 1.32 1998/07/27 21:56:35 hubbe Exp $
// $Id: Stdio.pmod,v 1.33 1998/07/28 23:53:17 hubbe Exp $
#include <string.h>
......@@ -220,7 +220,7 @@ class File
#endif
#define SET(X,Y) ::set_##X ((___##X = (Y)) && __stdio_##X)
#define _SET(X,Y) do { _fd->_##X=__stdio_##X; ___##X = (Y); }while(0)
#define _SET(X,Y) _fd->_##X=(___##X = (Y)) && __stdio_##X
#define CBFUNC(X) \
void set_##X (mixed l##X) \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment