lib/readline.c: Don't include getline.h, the prototype is now found in stdio.h.
authorSimon Josefsson <simon@josefsson.org>
Thu, 23 Aug 2007 15:44:35 +0000 (15:44 +0000)
committerSimon Josefsson <simon@josefsson.org>
Thu, 23 Aug 2007 15:44:35 +0000 (15:44 +0000)
ChangeLog
lib/readline.c

index 9d3520261b4bec58dbd9b4ce9a7aed4462bc8a2a..27aca80e58cfacde71cfd343f54fd91f669c2f37 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-08-23  Simon Josefsson  <simon@josefsson.org>
+
+       * lib/readline.c: Don't include getline.h, the prototype is now
+       found in stdio.h.
+
 2007-08-23  Jim Meyering  <jim@meyering.net>
 
        Getdelim touchup.
index f93a115293e1af1cc557810f7ef04fa8dcc78dee..1eadabd9713b2d9c86be6424d63f2ab95734b943 100644 (file)
@@ -1,5 +1,5 @@
 /* readline.c --- Simple implementation of readline.
-   Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
    Written by Simon Josefsson
 
    This program is free software; you can redistribute it and/or modify
@@ -32,7 +32,6 @@
 
 #include <stdio.h>
 #include <string.h>
-#include <getline.h>
 
 char *
 readline (const char *prompt)