summaryrefslogtreecommitdiffstats
path: root/common/fifo.h
diff options
context:
space:
mode:
authorPavel Roskin <plroskin@gmail.com>2017-03-12 09:35:00 -0700
committerjsorg71 <jay.sorg@gmail.com>2017-03-14 00:21:48 -0700
commit6ed4c969f4d646a7751fe2da29ba94eddd3d6477 (patch)
tree951c72b16a0be1a1cc8c77e6d2ecaa1f25f2bcd6 /common/fifo.h
parent8be83473b72c926d3c056fd8a81965dbce0a0e5e (diff)
downloadxrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.tar.gz
xrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.zip
Eliminate APP_CC and DEFAULT_CC
Diffstat (limited to 'common/fifo.h')
-rw-r--r--common/fifo.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/common/fifo.h b/common/fifo.h
index 3d44c453..3a69e029 100644
--- a/common/fifo.h
+++ b/common/fifo.h
@@ -38,10 +38,10 @@ typedef struct fifo
int auto_free;
} FIFO;
-FIFO * APP_CC fifo_create(void);
-void APP_CC fifo_delete(FIFO *self);
-int APP_CC fifo_add_item(FIFO *self, void *item);
-void * APP_CC fifo_remove_item(FIFO *self);
-int APP_CC fifo_is_empty(FIFO *self);
+FIFO * fifo_create(void);
+void fifo_delete(FIFO *self);
+int fifo_add_item(FIFO *self, void *item);
+void * fifo_remove_item(FIFO *self);
+int fifo_is_empty(FIFO *self);
#endif