diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/collection.h | 4 | ||||
-rw-r--r-- | src/socket.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/collection.h b/src/collection.h index e9b6403..2edc842 100644 --- a/src/collection.h +++ b/src/collection.h @@ -20,8 +20,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef __COLLECTION_H__ -#define __COLLECTION_H__ +#ifndef COLLECTION_H +#define COLLECTION_H struct collection { void **list; diff --git a/src/socket.h b/src/socket.h index c2b2599..a2c1354 100644 --- a/src/socket.h +++ b/src/socket.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef __SOCKET_SOCKET_H -#define __SOCKET_SOCKET_H +#ifndef SOCKET_SOCKET_H +#define SOCKET_SOCKET_H #include <stdlib.h> #include <stdint.h> @@ -62,4 +62,4 @@ int socket_send(int fd, void *data, size_t size); void socket_set_verbose(int level); -#endif /* __SOCKET_SOCKET_H */ +#endif /* SOCKET_SOCKET_H */ |