aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorOskari Timperi <oskari.timperi@iki.fi>2017-02-16 20:26:45 +0200
committerOskari Timperi <oskari.timperi@iki.fi>2017-02-16 20:26:45 +0200
commitf92cf5ad19f3e512b49398e3689e1bf4545dca59 (patch)
tree477298b3780232a6ce83a3bd382b32864a2fb299 /src
parent217721f0f5bcd2c88fb00e7347e77e8f81a7400e (diff)
downloadmqtt-f92cf5ad19f3e512b49398e3689e1bf4545dca59.tar.gz
mqtt-f92cf5ad19f3e512b49398e3689e1bf4545dca59.zip
Remove SEEK_SET/SEEK_END/SEEK_CUR redefinitions
Don't really know why they were there in the first place.
Diffstat (limited to 'src')
-rw-r--r--src/stream.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/stream.h b/src/stream.h
index 166233f..839facb 100644
--- a/src/stream.h
+++ b/src/stream.h
@@ -6,18 +6,6 @@
#include <stdlib.h>
#include <stdint.h>
-#ifndef SEEK_SET
-#define SEEK_SET (-1)
-#endif
-
-#ifndef SEEK_CUR
-#define SEEK_CUR (-2)
-#endif
-
-#ifndef SEEK_END
-#define SEEK_END (-3)
-#endif
-
typedef struct Stream Stream;
typedef struct StreamOps StreamOps;