mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-25 22:40:05 +00:00
Sun Jan 14 17:51:09 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* MakeTAGS (all-sources, all-headers): Always search the current directory first. * db/btree/bt_seq.c (__bt_first): Return RET_SPECIAL when key not found. * MakeTAGS (all-sources, all-headers): Always search the current directory first. * db/btree/bt_seq.c (__bt_first): Return RET_SPECIAL when key not found.
This commit is contained in:
parent
13bc775dc3
commit
b8aec9fa1a
@ -18,6 +18,12 @@ Tue Jan 16 17:37:39 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
|||||||
|
|
||||||
Sun Jan 14 17:51:09 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
|
Sun Jan 14 17:51:09 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
|
||||||
|
|
||||||
|
* MakeTAGS (all-sources, all-headers): Always search the
|
||||||
|
current directory first.
|
||||||
|
|
||||||
|
* db/btree/bt_seq.c (__bt_first): Return RET_SPECIAL when key not
|
||||||
|
found.
|
||||||
|
|
||||||
* stdio-common/vfscanf.c (inchar, conv_error, input_error,
|
* stdio-common/vfscanf.c (inchar, conv_error, input_error,
|
||||||
memory_error): Add cast to void to avoid gcc warning.
|
memory_error): Add cast to void to avoid gcc warning.
|
||||||
(vfscanf): Rewrite character class parsing to make it more efficient.
|
(vfscanf): Rewrite character class parsing to make it more efficient.
|
||||||
|
4
MakeTAGS
4
MakeTAGS
@ -83,13 +83,13 @@ all-dist := $(filter-out %.h %.c %.s %.S,$(all-dist))
|
|||||||
|
|
||||||
# All different versions of $(sources), preserving the configured sysdep
|
# All different versions of $(sources), preserving the configured sysdep
|
||||||
# directory order.
|
# directory order.
|
||||||
all-sources = $(shell find $(all-dirs) -maxdepth 1 \( -name fnord \
|
all-sources = $(shell find . $(all-dirs) -maxdepth 1 \( -name fnord \
|
||||||
$(foreach file,$(sort $(sources) $(sources:.c=.S) \
|
$(foreach file,$(sort $(sources) $(sources:.c=.S) \
|
||||||
$(sources:.c=.s)),\
|
$(sources:.c=.s)),\
|
||||||
-o -name $(file)) \
|
-o -name $(file)) \
|
||||||
\) -print)
|
\) -print)
|
||||||
|
|
||||||
all-headers = $(shell find $(all-dirs) -maxdepth 1 \( -name fnord \
|
all-headers = $(shell find . $(all-dirs) -maxdepth 1 \( -name fnord \
|
||||||
$(foreach file,$(headers),-o -name $(file)) \
|
$(foreach file,$(headers),-o -name $(file)) \
|
||||||
\) -print)
|
\) -print)
|
||||||
|
|
||||||
|
@ -358,7 +358,7 @@ __bt_first(t, key, erval, exactp)
|
|||||||
* page) and return it.
|
* page) and return it.
|
||||||
*/
|
*/
|
||||||
if ((ep = __bt_search(t, key, exactp)) == NULL)
|
if ((ep = __bt_search(t, key, exactp)) == NULL)
|
||||||
return (NULL);
|
return (RET_SPECIAL);
|
||||||
if (*exactp) {
|
if (*exactp) {
|
||||||
if (F_ISSET(t, B_NODUPS)) {
|
if (F_ISSET(t, B_NODUPS)) {
|
||||||
*erval = *ep;
|
*erval = *ep;
|
||||||
|
Loading…
Reference in New Issue
Block a user