Style nit.

This commit is contained in:
David E. O'Brien 2002-03-23 18:14:20 +00:00
parent a378c419fe
commit 327e1e773f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=93037

View File

@ -29,8 +29,6 @@
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $FreeBSD$
*/
#ifndef __GNUC__
@ -83,7 +81,7 @@ _start(char **ap,
argv = ap + 1;
env = ap + 2 + argc;
environ = env;
if(argc > 0 && argv[0] != NULL) {
if (argc > 0 && argv[0] != NULL) {
char *s;
__progname = argv[0];
for (s = __progname; *s != '\0'; s++)
@ -110,3 +108,5 @@ __asm__(".text");
__asm__("eprol:");
__asm__(".previous");
#endif
__asm__(".ident\t\"$FreeBSD$\"");