Changeset 609 for branches/GNU/src/binutils/intl/bindtextdom.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/intl/bindtextdom.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 1 /* Implementation of the bindtextdomain(3) function 2 Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.2 Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. 3 3 4 4 This program is free software; you can redistribute it and/or modify … … 62 62 #ifdef _LIBC 63 63 # define BINDTEXTDOMAIN __bindtextdomain 64 # define strdup(str) __strdup (str) 64 # ifndef strdup 65 # define strdup(str) __strdup (str) 66 # endif 65 67 #else 66 68 # define BINDTEXTDOMAIN bindtextdomain__ … … 134 136 { 135 137 /* We have to create a new binding. */ 138 #if !defined _LIBC && !defined HAVE_STRDUP 136 139 size_t len; 140 #endif 137 141 struct binding *new_binding = 138 142 (struct binding *) malloc (sizeof (*new_binding)); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.