mirror of git://sourceware.org/git/glibc.git
2005-01-10 Roland McGrath <roland@redhat.com>
* dlfcn/dlfcn.c (init): Fix typo in attribute decl.
This commit is contained in:
parent
73102f5002
commit
7f3fd5f7d3
|
|
@ -1,5 +1,5 @@
|
||||||
/* Load a shared object at run time.
|
/* Load a shared object at run time.
|
||||||
Copyright (C) 1995,96,97,98,99,2000,2003,2004 Free Software Foundation, Inc.
|
Copyright (C) 2005 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
|
@ -25,7 +25,7 @@ char **__dlfcn_argv attribute_hidden;
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
__attribute ((constuctor))
|
__attribute__ ((constructor))
|
||||||
init (int argc, char *argv[])
|
init (int argc, char *argv[])
|
||||||
{
|
{
|
||||||
__dlfcn_argc = argc;
|
__dlfcn_argc = argc;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue