summaryrefslogtreecommitdiff
path: root/ddd1~
blob: 4087816209462d9a8c730eb222ffd63c0793a8bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
*** builtins/printf.def	Fri Feb  2 20:00:48 2007
--- ../bash-3.2-patched/builtins/printf.def	Mon Nov 13 08:58:52 2006
***************
*** 2,6 ****
  It implements the builtin "printf" in Bash.
  
! Copyright (C) 1997-2006 Free Software Foundation, Inc.
  
  This file is part of GNU Bash, the Bourne Again SHell.
--- 2,6 ----
  It implements the builtin "printf" in Bash.
  
! Copyright (C) 1997-2005 Free Software Foundation, Inc.
  
  This file is part of GNU Bash, the Bourne Again SHell.
***************
*** 27,32 ****
  printf formats and prints ARGUMENTS under control of the FORMAT. FORMAT
  is a character string which contains three types of objects: plain
! characters, which are simply copied to standard output; character escape
! sequences, which are converted and copied to the standard output; and
  format specifications, each of which causes printing of the next successive
  argument.  In addition to the standard printf(1) formats, %b means to
--- 27,32 ----
  printf formats and prints ARGUMENTS under control of the FORMAT. FORMAT
  is a character string which contains three types of objects: plain
! characters, which are simply copied to standard output, character escape
! sequences which are converted and copied to the standard output, and
  format specifications, each of which causes printing of the next successive
  argument.  In addition to the standard printf(1) formats, %b means to
***************
*** 71,78 ****
  #include "common.h"
  
- #if defined (PRI_MACROS_BROKEN)
- #  undef PRIdMAX
- #endif
- 
  #if !defined (PRIdMAX)
  #  if HAVE_LONG_LONG
--- 71,74 ----
***************
*** 555,559 ****
       char *s;
  {
!   builtin_error (_("warning: %s: %s"), s, strerror(ERANGE));
  }
  
--- 551,555 ----
       char *s;
  {
!   builtin_error ("warning: %s: %s", s, strerror(ERANGE));
  }