From: Pierre Muller Date: Sat, 22 Dec 2012 18:53:36 +0000 (+0000) Subject: * ui-file.h (tee_file_new): Add extern modifier in header declaration. X-Git-Tag: sid-snapshot-20130101~33 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2da6da3b303a83cd24462fe0e8c668a325c18d3a;p=platform%2Fupstream%2Fbinutils.git * ui-file.h (tee_file_new): Add extern modifier in header declaration. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7486371..2f682cd 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2012-12-18 Pierre Muller + + * ui-file.h (tee_file_new): Add extern modifier in header declaration. + 2012-12-20 Tom Tromey * serial.c (deprecated_serial_fd): Remove. diff --git a/gdb/ui-file.h b/gdb/ui-file.h index bb85713..7385dfd 100644 --- a/gdb/ui-file.h +++ b/gdb/ui-file.h @@ -135,8 +135,8 @@ extern struct ui_file *gdb_fopen (char *name, char *mode); /* Create a file which writes to both ONE and TWO. CLOSE_ONE and CLOSE_TWO indicate whether the original files should be closed when the new file is closed. */ -struct ui_file *tee_file_new (struct ui_file *one, - int close_one, - struct ui_file *two, - int close_two); +extern struct ui_file *tee_file_new (struct ui_file *one, + int close_one, + struct ui_file *two, + int close_two); #endif