diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2025-04-16 12:47:07 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2025-04-16 12:47:07 (GMT) |
commit | 21760f7f0c1aed518f95b095a304e808e18a0f8c (patch) | |
tree | 1fb3f8ae99f6be5a50ab1dd7f8271d27ff75cea9 /src | |
parent | f0e32b052f0ea1d9cdc7074b933a5ddcd85ef721 (diff) |
Rename files in order to avoid conflicts with system headers.
Diffstat (limited to 'src')
-rw-r--r-- | src/glibext/Makefile.am | 2 | ||||
-rw-r--r-- | src/glibext/sigredir.c (renamed from src/glibext/signal.c) | 4 | ||||
-rw-r--r-- | src/glibext/sigredir.h (renamed from src/glibext/signal.h) | 8 |
3 files changed, 7 insertions, 7 deletions
diff --git a/src/glibext/Makefile.am b/src/glibext/Makefile.am index 6556961..b0a7c31 100644 --- a/src/glibext/Makefile.am +++ b/src/glibext/Makefile.am @@ -52,7 +52,7 @@ libglibext_la_SOURCES = \ secstorage.h secstorage.c \ serialize-int.h \ serialize.h serialize.c \ - signal.h signal.c \ + sigredir.h sigredir.c \ singleton-int.h \ singleton.h singleton.c \ storage-int.h \ diff --git a/src/glibext/signal.c b/src/glibext/sigredir.c index ee8daed..67e8563 100644 --- a/src/glibext/signal.c +++ b/src/glibext/sigredir.c @@ -1,6 +1,6 @@ /* Chrysalide - Outil d'analyse de fichiers binaires - * signal.c - encadrement des signaux supplémentaire par rapport à celui de la GLib + * sigredir.c - encadrement des signaux supplémentaire par rapport à celui de la GLib * * Copyright (C) 2014-2025 Cyrille Bagard * @@ -21,7 +21,7 @@ */ -#include "signal.h" +#include "sigredir.h" #include <assert.h> diff --git a/src/glibext/signal.h b/src/glibext/sigredir.h index 034fa80..f394d77 100644 --- a/src/glibext/signal.h +++ b/src/glibext/sigredir.h @@ -1,6 +1,6 @@ /* Chrysalide - Outil d'analyse de fichiers binaires - * signal.h - prototypes pour un encadrement des signaux supplémentaire par rapport à celui de la GLib + * sigredir.h - prototypes pour un encadrement des signaux supplémentaire par rapport à celui de la GLib * * Copyright (C) 2014-2025 Cyrille Bagard * @@ -21,8 +21,8 @@ */ -#ifndef _GLIBEXT_SIGNAL_H -#define _GLIBEXT_SIGNAL_H +#ifndef _GLIBEXT_SIGREDIR_H +#define _GLIBEXT_SIGREDIR_H #include <glib-object.h> @@ -48,4 +48,4 @@ void g_signal_disconnect_from_main(gsignal_wrapper_info_t *); -#endif /* _GLIBEXT_SIGNAL_H */ +#endif /* _GLIBEXT_SIGREDIR_H */ |