Commit 5d390df3 authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Steve French

smb: client: delete "true", "false" defines

Kernel has its own official true/false definitions.

The defines aren't even used in this file.
Signed-off-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
parent 6613476e
......@@ -26,13 +26,6 @@
#include "cifsproto.h"
#include "../common/md4.h"
#ifndef false
#define false 0
#endif
#ifndef true
#define true 1
#endif
/* following came from the other byteorder.h to avoid include conflicts */
#define CVAL(buf,pos) (((unsigned char *)(buf))[pos])
#define SSVALX(buf,pos,val) (CVAL(buf,pos)=(val)&0xFF,CVAL(buf,pos+1)=(val)>>8)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment