Revision 0edaffb643e5713cd77517ebb85d148b1c34a859 authored by ffxbld on 04 May 2015, 19:30:24 UTC, committed by ffxbld on 04 May 2015, 19:30:24 UTC
1 parent fe3239a
Raw File
mult.c
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

int mult(int a, int b)
{
    return a * b;
}
back to top