diff options
| author | Po Lu | 2022-01-07 06:52:52 +0000 |
|---|---|---|
| committer | Po Lu | 2022-01-07 06:52:52 +0000 |
| commit | 808f69bf7a4e7c5cc58762786fd856f7a138a2f3 (patch) | |
| tree | 8c70ce63e9e334ac4bd9c6b8505a94052dfa0d20 /src | |
| parent | 751789471cf04916bcfad358472625f382e596d8 (diff) | |
| download | emacs-808f69bf7a4e7c5cc58762786fd856f7a138a2f3.tar.gz emacs-808f69bf7a4e7c5cc58762786fd856f7a138a2f3.zip | |
* src/haikuselect.c: Fix implicit declaration of free.
Diffstat (limited to 'src')
| -rw-r--r-- | src/haikuselect.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/haikuselect.c b/src/haikuselect.c index 1b94fb97e6f..2e619c69f7a 100644 --- a/src/haikuselect.c +++ b/src/haikuselect.c | |||
| @@ -24,6 +24,8 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ | |||
| 24 | #include "haikuselect.h" | 24 | #include "haikuselect.h" |
| 25 | #include "haikuterm.h" | 25 | #include "haikuterm.h" |
| 26 | 26 | ||
| 27 | #include <stdlib.h> | ||
| 28 | |||
| 27 | static Lisp_Object | 29 | static Lisp_Object |
| 28 | haiku_selection_data_1 (Lisp_Object clipboard) | 30 | haiku_selection_data_1 (Lisp_Object clipboard) |
| 29 | { | 31 | { |