https://github.com/mozilla/gecko-dev
Raw File
Tip revision: ef73edccf7e74ea3d5c79e3ee0aaabe0895cd007 authored by ffxbld on 17 July 2012, 19:30:26 UTC
Added FENNEC_15_0b1_RELEASE FENNEC_15_0b1_BUILD2 tag(s) for changeset 5d9ee46bdec5. DONTBUILD CLOSED TREE a=release
Tip revision: ef73edc
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