2006-02-23 H.J. Lu <hongjiu.lu@intel.com>

* ld-pie/weakundef-data.c: Fix the typo.
This commit is contained in:
H.J. Lu 2006-02-23 22:23:26 +00:00
parent 59cf82fe74
commit 7dd61ce72a
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2006-02-23 H.J. Lu <hongjiu.lu@intel.com>
* ld-pie/weakundef-data.c: Fix the typo.
2006-02-22 H.J. Lu <hongjiu.lu@intel.com>
* ld-pie/pie.c: New file.

View File

@ -2,8 +2,8 @@
#pragma weak undef_data
extern int undef_data (void);
int (*ptr_to_data)(void) = undef_data;
extern int undef_data;
int *ptr_to_data = &undef_data;
int
main (void)