]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(struct entry): Fix type of element data.
authorUlrich Drepper <drepper@redhat.com>
Wed, 23 Feb 2000 05:40:42 +0000 (05:40 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 23 Feb 2000 05:40:42 +0000 (05:40 +0000)
misc/search.h

index 8fb2539cd10fbdcfc1b722c4b21838e50bb14022..0f919b6a728f8f5cbef461b2e028697f4f158c81 100644 (file)
@@ -1,5 +1,5 @@
 /* Declarations for System V style searching functions.
-   Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+   Copyright (C) 1995-1999, 2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -70,7 +70,7 @@ ACTION;
 typedef struct entry
   {
     char *key;
-    char *data;
+    void *data;
   }
 ENTRY;