File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,8 @@ wifidog_SOURCES = commandline.c \
28
28
ping_thread.c \
29
29
safe.c \
30
30
httpd_thread.c \
31
- simple_http.c
31
+ simple_http.c \
32
+ pstring.c
32
33
33
34
noinst_HEADERS = commandline.h \
34
35
common.h \
@@ -47,6 +48,7 @@ noinst_HEADERS = commandline.h \
47
48
ping_thread.h \
48
49
safe.h \
49
50
httpd_thread.h \
50
- simple_http.h
51
+ simple_http.h \
52
+ pstring.h
51
53
52
54
wdctl_SOURCES = wdctl.c
Original file line number Diff line number Diff line change
1
+ /* vim: set et ts=4 sts=4 sw=4 : */
1
2
/********************************************************************\
2
3
* This program is free software; you can redistribute it and/or *
3
4
* modify it under the terms of the GNU General Public License as *
36
37
void * safe_malloc (size_t );
37
38
38
39
/** @brief Safe version of realloc */
39
- void * realloc (void * , size_t );
40
+ void * safe_realloc (void * , size_t );
40
41
41
42
/* @brief Safe version of strdup
42
43
*/
You can’t perform that action at this time.
0 commit comments