Skip to content
Snippets Groups Projects
div0.c 252 B
Newer Older
  • Learn to ignore specific revisions
  • Wolfgang Denk's avatar
    Wolfgang Denk committed
    /*
     * (C) Copyright 2002
     * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
     *
    
     * SPDX-License-Identifier:	GPL-2.0+
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
     */
    
    /* Replacement (=dummy) for GNU/Linux division-by zero handler */
    void __div0 (void)
    {
    	extern void hang (void);
    
    	hang();
    }