update include guard names

This commit is contained in:
ailin-nemui 2019-05-01 22:22:22 +02:00
commit 37f7c7f374
114 changed files with 232 additions and 232 deletions

View file

@ -1,5 +1,5 @@
#ifndef __PERL_COMMON_H
#define __PERL_COMMON_H
#ifndef IRSSI_PERL_PERL_COMMON_H
#define IRSSI_PERL_PERL_COMMON_H
/* helper defines */
#define new_pv(a) \

View file

@ -1,5 +1,5 @@
#ifndef __PERL_CORE_H
#define __PERL_CORE_H
#ifndef IRSSI_PERL_PERL_CORE_H
#define IRSSI_PERL_PERL_CORE_H
typedef struct {
char *name; /* unique name */

View file

@ -1,5 +1,5 @@
#ifndef __PERL_SIGNALS_H
#define __PERL_SIGNALS_H
#ifndef IRSSI_PERL_PERL_SIGNALS_H
#define IRSSI_PERL_PERL_SIGNALS_H
void perl_signal_args_to_c(void (*callback)(void *, void **), void *cb_arg,
int signal_id, SV **args, size_t n_args);

View file

@ -1,5 +1,5 @@
#ifndef __PERL_SOURCES_H
#define __PERL_SOURCES_H
#ifndef IRSSI_PERL_PERL_SOURCES_H
#define IRSSI_PERL_PERL_SOURCES_H
int perl_timeout_add(int msecs, SV *func, SV *data, int once);
int perl_input_add(int source, int condition, SV *func, SV *data, int once);