Skip to content

Commit 0f95e7f

Browse files
committed
Get rid of ids copy of gcc-attributes.h so it uses the right one
1 parent c5789f1 commit 0f95e7f

File tree

3 files changed

+3
-19
lines changed

3 files changed

+3
-19
lines changed

audisp/plugins/ids/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ prog_conf = ids.conf
2929
plugin_confdir=$(prog_confdir)/plugins.d
3030
plugin_conf = audisp-ids.conf
3131
sbin_PROGRAMS = audisp-ids
32-
noinst_HEADERS = account.h avl.h ids_config.h gcc-attributes.h ids.h \
32+
noinst_HEADERS = account.h avl.h ids_config.h ids.h \
3333
model_bad_event.h model_behavior.h nvpair.h origin.h \
3434
reactions.h session.h timer-services.h
3535

audisp/plugins/ids/avl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ typedef struct avl_iterator {
3939
* a is linked directly to the tree, so it has to
4040
* be properly allocated by the caller.
4141
*/
42-
avl_t *avl_insert(avl_tree_t *t, avl_t *a) NEVERNULL WARNUNUSED;
42+
avl_t *avl_insert(avl_tree_t *t, avl_t *a) __wur;
4343

4444
/* Remove an element a from the AVL tree t
4545
* returns a pointer to the removed element
4646
* or NULL if an element equal to a is not found
4747
* (equal as returned by t->compar())
4848
*/
49-
avl_t *avl_remove(avl_tree_t *t, avl_t *a) WARNUNUSED;
49+
avl_t *avl_remove(avl_tree_t *t, avl_t *a) __wur;
5050

5151
/* Find the element into the tree that equal to a
5252
* (equal as returned by t->compar())

audisp/plugins/ids/gcc-attributes.h

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)